Skip to content

Commit 761fa21

Browse files
authored
Make CLICommand.getClientCharset public (#10845)
1 parent 35082b4 commit 761fa21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/hudson/cli/CLICommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ public void setClientCharset(@NonNull Charset encoding) {
497497
this.encoding = encoding;
498498
}
499499

500-
protected @NonNull Charset getClientCharset() throws IOException, InterruptedException {
500+
public @NonNull Charset getClientCharset() throws IOException, InterruptedException {
501501
if (encoding != null) {
502502
return encoding;
503503
}

0 commit comments

Comments
 (0)