autoboxings fixed
This commit is contained in:
committed by
Jonathan Leibiusky
parent
97e2a50f60
commit
7c680634a3
@@ -125,7 +125,7 @@ public class Connection {
|
||||
|
||||
public int getIntegerReply() {
|
||||
pipelinedCommands--;
|
||||
return (Integer) protocol.read(inputStream);
|
||||
return ((Integer) protocol.read(inputStream)).intValue();
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
|
||||
Reference in New Issue
Block a user