Skip to content

Commit 1193647

Browse files
Remove unnecessary semicolon
This commit cleans up a couple of classes by removing unnecessary semicolons which was giving a warning during compile/commit. Signed-off-by: Tran Ngoc Nhan <[email protected]>
1 parent 866a7ec commit 1193647

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-grpc-core/src/main/java/org/springframework/grpc/client/interceptor/security/BasicAuthenticationInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void start(ClientCall.Listener<RespT> responseListener, io.grpc.Metadata
5555
+ BasicAuthenticationInterceptor.this.password)
5656
.getBytes()));
5757
super.start(responseListener, headers);
58-
};
58+
}
5959
};
6060
}
6161

spring-grpc-core/src/main/java/org/springframework/grpc/client/interceptor/security/BearerTokenAuthenticationInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void start(ClientCall.Listener<RespT> responseListener, io.grpc.Metadata
5151
headers.put(GrpcSecurity.AUTHORIZATION_KEY,
5252
"Bearer " + BearerTokenAuthenticationInterceptor.this.token.get());
5353
super.start(responseListener, headers);
54-
};
54+
}
5555
};
5656
}
5757

0 commit comments

Comments
 (0)