@@ -95,7 +95,7 @@ public interface RedisOperations<K, V> {
95
95
* values are hashes, this serializer will be used to deserialize both the key and value
96
96
* @return list of objects returned by the pipeline
97
97
*/
98
- List <Object > executePipelined (final RedisCallback <?> action , final RedisSerializer <?> resultSerializer );
98
+ List <Object > executePipelined (RedisCallback <?> action , RedisSerializer <?> resultSerializer );
99
99
100
100
/**
101
101
* Executes the given Redis session on a pipelined connection. Allows transactions to be pipelined. Note that the
@@ -104,7 +104,7 @@ public interface RedisOperations<K, V> {
104
104
* @param session Session callback
105
105
* @return list of objects returned by the pipeline
106
106
*/
107
- List <Object > executePipelined (final SessionCallback <?> session );
107
+ List <Object > executePipelined (SessionCallback <?> session );
108
108
109
109
/**
110
110
* Executes the given Redis session on a pipelined connection, returning the results using a dedicated serializer.
@@ -115,7 +115,7 @@ public interface RedisOperations<K, V> {
115
115
* @param resultSerializer
116
116
* @return list of objects returned by the pipeline
117
117
*/
118
- List <Object > executePipelined (final SessionCallback <?> session , final RedisSerializer <?> resultSerializer );
118
+ List <Object > executePipelined (SessionCallback <?> session , RedisSerializer <?> resultSerializer );
119
119
120
120
/**
121
121
* Executes the given {@link RedisScript}
0 commit comments