Fix indentation (code formatting...)
This commit is contained in:
@@ -22,7 +22,6 @@ import redis.clients.util.SafeEncoder;
|
|||||||
public class BinaryJedis implements BasicCommands, BinaryJedisCommands,
|
public class BinaryJedis implements BasicCommands, BinaryJedisCommands,
|
||||||
MultiKeyBinaryCommands, AdvancedBinaryJedisCommands,
|
MultiKeyBinaryCommands, AdvancedBinaryJedisCommands,
|
||||||
BinaryScriptingCommands, Closeable {
|
BinaryScriptingCommands, Closeable {
|
||||||
|
|
||||||
protected Client client = null;
|
protected Client client = null;
|
||||||
protected Transaction transaction = null;
|
protected Transaction transaction = null;
|
||||||
protected Pipeline pipeline = null;
|
protected Pipeline pipeline = null;
|
||||||
|
|||||||
@@ -260,7 +260,7 @@ public class Connection implements Closeable {
|
|||||||
public List<Object> getMany(int count) {
|
public List<Object> getMany(int count) {
|
||||||
flush();
|
flush();
|
||||||
List<Object> responses = new ArrayList<Object>();
|
List<Object> responses = new ArrayList<Object>();
|
||||||
for (int i = 0 ; i < count ; i++) {
|
for (int i = 0; i < count; i++) {
|
||||||
try {
|
try {
|
||||||
responses.add(readProtocolWithCheckingBroken());
|
responses.add(readProtocolWithCheckingBroken());
|
||||||
} catch (JedisDataException e) {
|
} catch (JedisDataException e) {
|
||||||
|
|||||||
Reference in New Issue
Block a user