Skip to content

Commit 19d1f52

Browse files
mp911dechristophstrobl
authored andcommitted
Reorder methods.
See: #2273 Original Pull Request: #2276
1 parent f5af2cf commit 19d1f52

File tree

2 files changed

+410
-382
lines changed

2 files changed

+410
-382
lines changed

src/main/java/org/springframework/data/redis/core/RedisOperations.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public interface RedisOperations<K, V> {
9595
* values are hashes, this serializer will be used to deserialize both the key and value
9696
* @return list of objects returned by the pipeline
9797
*/
98-
List<Object> executePipelined(final RedisCallback<?> action, final RedisSerializer<?> resultSerializer);
98+
List<Object> executePipelined(RedisCallback<?> action, RedisSerializer<?> resultSerializer);
9999

100100
/**
101101
* 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> {
104104
* @param session Session callback
105105
* @return list of objects returned by the pipeline
106106
*/
107-
List<Object> executePipelined(final SessionCallback<?> session);
107+
List<Object> executePipelined(SessionCallback<?> session);
108108

109109
/**
110110
* 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> {
115115
* @param resultSerializer
116116
* @return list of objects returned by the pipeline
117117
*/
118-
List<Object> executePipelined(final SessionCallback<?> session, final RedisSerializer<?> resultSerializer);
118+
List<Object> executePipelined(SessionCallback<?> session, RedisSerializer<?> resultSerializer);
119119

120120
/**
121121
* Executes the given {@link RedisScript}

0 commit comments

Comments
 (0)