diff --git a/src/main/java/org/jboss/naming/remote/protocol/ProtocolCommand.java b/src/main/java/org/jboss/naming/remote/protocol/ProtocolCommand.java index 5983e2c..e98cfbe 100644 --- a/src/main/java/org/jboss/naming/remote/protocol/ProtocolCommand.java +++ b/src/main/java/org/jboss/naming/remote/protocol/ProtocolCommand.java @@ -36,7 +36,7 @@ public interface ProtocolCommand { T execute(Channel channel, Object... args) throws IOException, NamingException; - void handleServerMessage(Channel channel, DataInput input, int correlationId, RemoteNamingService namingServer) throws IOException; + void handleServerMessage(Channel channel, DataInput input, int correlationId, RemoteNamingService remoteNamingService) throws IOException; void handleClientMessage(DataInput input, int correlationId, RemoteNamingStore namingStore) throws IOException; }