New exception management. Less exceptions... assume everything works

This commit is contained in:
Jonathan Leibiusky
2010-08-04 20:15:08 -03:00
parent b58ae0692c
commit 1df234153b
19 changed files with 399 additions and 454 deletions

View File

@@ -2,11 +2,9 @@ package redis.clients.jedis.tests.commands;
import org.junit.Test;
import redis.clients.jedis.JedisException;
public class ConnectionHandlingCommandsTest extends JedisCommandTestBase {
@Test
public void quit() throws JedisException {
public void quit() {
jedis.quit();
}
}