Skip to content

Commit

Permalink
Fix for Method input parameters must be final compilation error (#6778
Browse files Browse the repository at this point in the history
)

Signed-off-by: Fabio Di Fabio <[email protected]>
  • Loading branch information
fab-10 authored Mar 21, 2024
1 parent c564fcd commit 010f947
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public enum RpcErrorType implements RpcMethodError {
}

RpcErrorType(
final int code, final String message, Function<String, Optional<String>> dataDecoder) {
final int code, final String message, final Function<String, Optional<String>> dataDecoder) {
this.code = code;
this.message = message;
this.dataDecoder = dataDecoder;
Expand Down

0 comments on commit 010f947

Please sign in to comment.