Remove throws Exception from Sample config

This commit is contained in:
Rob Winch
2014-10-27 11:27:59 -05:00
parent 07ff3088bf
commit f1ea4793bb
2 changed files with 2 additions and 2 deletions

View File

@@ -168,7 +168,7 @@ Add the following Spring Configuration:
public class Config {
@Bean
public JedisConnectionFactory connectionFactory() throws Exception {
public JedisConnectionFactory connectionFactory() {
return new JedisConnectionFactory();
}
}