Skip to content

Commit 7220482

Browse files
committed
Make properties private
Signed-off-by: Terence <terencelimxp@gmail.com>
1 parent c2ccc39 commit 7220482

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

storage/connectors/redis/src/main/java/feast/storage/connectors/redis/retriever/RedisClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
public class RedisClient implements RedisClientAdapter {
2929

30-
public final RedisAsyncCommands<byte[], byte[]> asyncCommands;
30+
private final RedisAsyncCommands<byte[], byte[]> asyncCommands;
3131

3232
@Override
3333
public RedisFuture<List<KeyValue<byte[], byte[]>>> hmget(byte[] key, byte[]... fields) {

storage/connectors/redis/src/main/java/feast/storage/connectors/redis/retriever/RedisClusterClient.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232

3333
public class RedisClusterClient implements RedisClientAdapter {
3434

35-
public final RedisAdvancedClusterAsyncCommands<byte[], byte[]> asyncCommands;
36-
public final RedisKeySerializerV2 serializer;
37-
@Nullable public final RedisKeySerializerV2 fallbackSerializer;
35+
private final RedisAdvancedClusterAsyncCommands<byte[], byte[]> asyncCommands;
36+
private final RedisKeySerializerV2 serializer;
37+
@Nullable private final RedisKeySerializerV2 fallbackSerializer;
3838

3939
@Override
4040
public RedisFuture<List<KeyValue<byte[], byte[]>>> hmget(byte[] key, byte[]... fields) {

0 commit comments

Comments
 (0)