Fix indentation (code formatting...)

This commit is contained in:
Jungtaek Lim
2014-08-08 10:56:39 +09:00
parent 1877185153
commit 514144d472
7 changed files with 67 additions and 68 deletions

View File

@@ -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;

View File

@@ -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) {