+ fix some minor javadoc problems

This commit is contained in:
Costin Leau
2010-12-13 13:49:56 +02:00
parent 881f1a14d9
commit 10a80d33b9
2 changed files with 3 additions and 3 deletions

View File

@@ -137,8 +137,8 @@ public class JedisConnectionFactory implements InitializingBean, DisposableBean,
*
* @param hostName The hostName to set.
*/
public void setHostName(String host) {
this.hostName = host;
public void setHostName(String hostName) {
this.hostName = hostName;
}
/**

View File

@@ -21,7 +21,7 @@ import org.springframework.data.keyvalue.redis.serializer.StringRedisSerializer;
/**
* String-focused extension of RedisTemplate. Since most operations against Redis are String based,
* this class provides a dedicated class that minimizes configuration of its more generic
* {@link template RedisTemplate} especially in terms of serializers.
* {@link RedisTemplate template} especially in terms of serializers.
*
* @author Costin Leau
*/