Skip to content

Commit c6f326a

Browse files
committed
chore: polishing and adding author
Signed-off-by: annemayor <[email protected]>
1 parent e1d301f commit c6f326a

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
@@ -82,6 +82,7 @@
8282
* @author Dennis Neufeld
8383
* @author Shyngys Sapraliyev
8484
* @author Jeonggyu Choi
85+
* @author Anne Lee
8586
*/
8687
@NullUnmarked
8788
@SuppressWarnings({ "ConstantConditions", "deprecation" })
@@ -247,7 +248,9 @@ public RedisZSetCommands zSetCommands() {
247248
}
248249

249250
@Override
250-
public RedisVectorSetCommands vectorSetCommands() { return delegate.vectorSetCommands(); }
251+
public RedisVectorSetCommands vectorSetCommands() {
252+
return delegate.vectorSetCommands();
253+
}
251254

252255
@Override
253256
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
@@ -110,6 +110,7 @@
110110
* @author Guy Korland
111111
* @author dengliming
112112
* @author John Blum
113+
* @author Anne Lee
113114
*/
114115
@SuppressWarnings("ConstantConditions")
115116
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)