Remove @Override from Interfaces

This is necessary to ensure the code compiles in Eclipse.

Fixes gh-83
This commit is contained in:
Rob Winch
2014-12-22 16:34:27 -06:00
parent 873f4bacd6
commit b3130edd98
20 changed files with 0 additions and 75 deletions

View File

@@ -40,14 +40,11 @@ public class EmbeddedRedisConfiguration {
class RedisServerBean implements InitializingBean, DisposableBean {
private RedisServer redisServer;
@Override
public void afterPropertiesSet() throws Exception {
redisServer = new RedisServer(Protocol.DEFAULT_PORT);
redisServer.start();
}
@Override
public void destroy() throws Exception {
if(redisServer != null) {
redisServer.stop();