Skip to content

Commit 2d6d03a

Browse files
committed
chore: polishing and adding author
Signed-off-by: annemayor <pranne1224@gmail.com>
1 parent 05c15b6 commit 2d6d03a

File tree

9 files changed

+12
-3
lines changed

9 files changed

+12
-3
lines changed

src/main/java/org/springframework/data/redis/connection/DefaultStringRedisConnection.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
* @author Shyngys Sapraliyev
8585
* @author Jeonggyu Choi
8686
* @author Mingi Lee
87+
* @author Anne Lee
8788
*/
8889
@NullUnmarked
8990
@SuppressWarnings({ "ConstantConditions", "deprecation" })
@@ -249,7 +250,9 @@ public RedisZSetCommands zSetCommands() {
249250
}
250251

251252
@Override
252-
public RedisVectorSetCommands vectorSetCommands() { return delegate.vectorSetCommands(); }
253+
public RedisVectorSetCommands vectorSetCommands() {
254+
return delegate.vectorSetCommands();
255+
}
253256

254257
@Override
255258
public Long append(byte[] key, byte[] value) {

src/main/java/org/springframework/data/redis/connection/RedisCommandsProvider.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* Provides access to {@link RedisCommands} and the segregated command interfaces.
2020
*
2121
* @author Mark Paluch
22+
* @author Anne Lee
2223
* @since 3.0
2324
*/
2425
public interface RedisCommandsProvider {

src/main/java/org/springframework/data/redis/connection/jedis/JedisClusterConnection.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
* @author Pavel Khokhlov
7777
* @author Liming Deng
7878
* @author John Blum
79+
* @author Anne Lee
7980
* @since 1.7
8081
*/
8182
@NullUnmarked

src/main/java/org/springframework/data/redis/connection/jedis/JedisConnection.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
* @author Guy Korland
7777
* @author Dengliming
7878
* @author John Blum
79+
* @author Anne Lee
7980
* @see redis.clients.jedis.Jedis
8081
*/
8182
@NullUnmarked

src/main/java/org/springframework/data/redis/connection/jedis/JedisConverters.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@
115115
* @author Guy Korland
116116
* @author dengliming
117117
* @author John Blum
118+
* @author Anne Lee
118119
*/
119120
@SuppressWarnings("ConstantConditions")
120121
abstract class JedisConverters extends Converters {

src/main/java/org/springframework/data/redis/connection/lettuce/LettuceConnection.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
* @author Tamil Selvan
104104
* @author ihaohong
105105
* @author John Blum
106+
* @author Anne Lee
106107
*/
107108
@NullUnmarked
108109
public class LettuceConnection extends AbstractRedisConnection {

src/main/java/org/springframework/data/redis/connection/lettuce/LettuceVectorSetCommands.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ public Boolean vAdd(byte[] key, double[] values, byte[] element, VAddOptions opt
5656
// Convert double array to FP32 binary format and call the byte[] version
5757
throw new UnsupportedOperationException("V.ADD is not yet supported in Lettuce");
5858
}
59-
}
59+
}

src/test/java/org/springframework/data/redis/connection/RedisConnectionUnitTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
* @author Ninad Divadkar
5252
* @author Mark Paluch
5353
* @author Dennis Neufeld
54+
* @author Anne Lee
5455
*/
5556
class RedisConnectionUnitTests {
5657

src/test/java/org/springframework/data/redis/connection/jedis/JedisVectorSetCommandsUnitTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,4 +317,4 @@ void shouldHandleAllQuantizationTypes() {
317317
// Verify all three calls were made
318318
verify(jedisInvoker, times(3)).just(any(), any(), any(), any(), any(), any(VAddParams.class));
319319
}
320-
}
320+
}

0 commit comments

Comments
 (0)