autoboxings fixed
This commit is contained in:
committed by
Jonathan Leibiusky
parent
97e2a50f60
commit
7c680634a3
@@ -155,10 +155,8 @@ public class Protocol {
|
||||
}
|
||||
|
||||
private Object processInteger(DataInputStream is) {
|
||||
int ret = 0;
|
||||
String num = readLine(is);
|
||||
ret = Integer.parseInt(num);
|
||||
return ret;
|
||||
return Integer.valueOf(num);
|
||||
}
|
||||
|
||||
private Object processMultiBulkReply(DataInputStream is) {
|
||||
|
||||
Reference in New Issue
Block a user