fix broken instance reference to protocol
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user