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