Fix indentation formatting issue

This commit is contained in:
Guillermo Casanova 2016-07-07 20:33:37 +02:00
parent 23c7c7d844
commit 8a85449479

View File

@ -191,10 +191,10 @@ public class JedisTest {
public void givenAPoolConfigurationThenCreateAJedisPool() { public void givenAPoolConfigurationThenCreateAJedisPool() {
final JedisPoolConfig poolConfig = buildPoolConfig(); final JedisPoolConfig poolConfig = buildPoolConfig();
try (JedisPool jedisPool = new JedisPool(poolConfig, "localhost"); try (JedisPool jedisPool = new JedisPool(poolConfig, "localhost"); Jedis jedis = jedisPool.getResource()) {
Jedis jedis = jedisPool.getResource()) {
// do simple operation to verify that the Jedis resource is working properly // do simple operation to verify that the Jedis resource is working
// properly
String key = "key"; String key = "key";
String value = "value"; String value = "value";