diff --git a/src/main/java/org/springframework/data/redis/core/RedisTemplate.java b/src/main/java/org/springframework/data/redis/core/RedisTemplate.java index 7c351bfd4..313519837 100644 --- a/src/main/java/org/springframework/data/redis/core/RedisTemplate.java +++ b/src/main/java/org/springframework/data/redis/core/RedisTemplate.java @@ -136,7 +136,6 @@ public class RedisTemplate extends RedisAccessor implements RedisOperation /** * Executes the given action object within a connection that can be exposed or not. Additionally, the connection * can be pipelined. Note the results of the pipeline are discarded (making it suitable for write-only scenarios). - * Use {@link #executePipelined(RedisCallback)} as an alternative. * * @param return type * @param action callback object to execute diff --git a/src/main/java/org/springframework/data/redis/core/query/SortQuery.java b/src/main/java/org/springframework/data/redis/core/query/SortQuery.java index 8d522bcdf..70ee868b7 100644 --- a/src/main/java/org/springframework/data/redis/core/query/SortQuery.java +++ b/src/main/java/org/springframework/data/redis/core/query/SortQuery.java @@ -58,21 +58,21 @@ public interface SortQuery { /** * Return the target key for sorting. * - * @return + * @return the target key */ K getKey(); /** * Returns the pattern of the external key used for sorting. * - * @return + * @return the external key pattern */ String getBy(); /** * Returns the external key(s) whose values are returned by the sort. * - * @return + * @return the (list of) keys used for GET */ List getGetPattern(); } \ No newline at end of file diff --git a/src/main/java/org/springframework/data/redis/support/collections/RedisProperties.java b/src/main/java/org/springframework/data/redis/support/collections/RedisProperties.java index 905318bb8..bcb77aca2 100644 --- a/src/main/java/org/springframework/data/redis/support/collections/RedisProperties.java +++ b/src/main/java/org/springframework/data/redis/support/collections/RedisProperties.java @@ -23,9 +23,9 @@ import java.util.Date; import java.util.Enumeration; import java.util.LinkedHashSet; import java.util.Map; +import java.util.Map.Entry; import java.util.Properties; import java.util.Set; -import java.util.Map.Entry; import java.util.concurrent.TimeUnit; import org.springframework.data.redis.connection.DataType; @@ -59,7 +59,8 @@ public class RedisProperties extends Properties implements RedisMapRedisProperties instance. * - * @param boundOps + * @param key + * @param operations */ public RedisProperties(String key, RedisOperations operations) { this(null, operations. boundHashOps(key)); @@ -69,6 +70,7 @@ public class RedisProperties extends Properties implements RedisMapRedisProperties instance. * * @param defaults + * @param boundOps */ public RedisProperties(Properties defaults, BoundHashOperations boundOps) { super(defaults); @@ -80,7 +82,8 @@ public class RedisProperties extends Properties implements RedisMapRedisProperties instance. * * @param defaults - * @param boundOps + * @param key + * @param operations */ public RedisProperties(Properties defaults, String key, RedisOperations operations) { this(defaults, operations. boundHashOps(key));