Skip to content

Commit

Permalink
BaseJsonRpcTool: make outputStyle final
Browse files Browse the repository at this point in the history
  • Loading branch information
msgilligan committed Sep 22, 2023
1 parent ca22745 commit 5941e64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public abstract class BaseJsonRpcTool implements JsonRpcClientTool {
protected JsonRpcMessage.Version jsonRpcVersion = JsonRpcMessage.Version.V2;
protected JsonRpcClientTool.OutputObject outputObject = OutputObject.RESULT;
//protected JsonRpcClientTool.OutputFormat outputFormat = OutputFormat.JSON;
protected JsonRpcClientTool.OutputStyle outputStyle = OutputStyle.PRETTY;
protected final JsonRpcClientTool.OutputStyle outputStyle = OutputStyle.PRETTY;

public BaseJsonRpcTool() {
formatter.setLongOptPrefix("-");
Expand Down

0 comments on commit 5941e64

Please sign in to comment.