remove synchronised modifier from handleMessage
This commit is contained in:
parent
d6a163990e
commit
4bb8f6a51f
1 changed files with 1 additions and 1 deletions
|
@ -440,7 +440,7 @@ final class RpcState {
|
|||
}).exceptionallyCompose(exc -> this.disconnect(exc));
|
||||
}
|
||||
|
||||
synchronized void handleMessage(IncomingRpcMessage message) throws RpcException {
|
||||
private void handleMessage(IncomingRpcMessage message) throws RpcException {
|
||||
var reader = message.getBody().getAs(RpcProtocol.Message.factory);
|
||||
switch (reader.which()) {
|
||||
case UNIMPLEMENTED:
|
||||
|
|
Loading…
Reference in a new issue