fix broken instance reference to protocol

This commit is contained in:
Eric Hauser
2012-04-19 16:48:18 -04:00
parent 94e3d25ab8
commit 5a6d98ac56

View File

@@ -209,7 +209,7 @@ public class Connection {
public List<Long> getIntegerMultiBulkReply() { public List<Long> getIntegerMultiBulkReply() {
flush(); flush();
pipelinedCommands--; pipelinedCommands--;
return (List<Long>) protocol.read(inputStream); return (List<Long>) Protocol.read(inputStream);
} }
public List<Object> getAll() { public List<Object> getAll() {
@@ -235,4 +235,4 @@ public class Connection {
pipelinedCommands--; pipelinedCommands--;
return Protocol.read(inputStream); return Protocol.read(inputStream);
} }
} }