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

@@ -7,9 +7,9 @@ package redis.clients.jedis;
* @see https://github.com/xetorthio/jedis/pull/498
*/
public abstract class PipelineBlock extends Pipeline {
// For shadowing
@SuppressWarnings("unused")
private Client client;
// For shadowing
@SuppressWarnings("unused")
private Client client;
public abstract void execute();
}