Skip to content

Commit

Permalink
Make properties private
Browse files Browse the repository at this point in the history
Signed-off-by: Terence <terencelimxp@gmail.com>
  • Loading branch information
terryyylim committed Oct 14, 2020
1 parent c2ccc39 commit 7220482
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

public class RedisClient implements RedisClientAdapter {

public final RedisAsyncCommands<byte[], byte[]> asyncCommands;
private final RedisAsyncCommands<byte[], byte[]> asyncCommands;

@Override
public RedisFuture<List<KeyValue<byte[], byte[]>>> hmget(byte[] key, byte[]... fields) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

public class RedisClusterClient implements RedisClientAdapter {

public final RedisAdvancedClusterAsyncCommands<byte[], byte[]> asyncCommands;
public final RedisKeySerializerV2 serializer;
@Nullable public final RedisKeySerializerV2 fallbackSerializer;
private final RedisAdvancedClusterAsyncCommands<byte[], byte[]> asyncCommands;
private final RedisKeySerializerV2 serializer;
@Nullable private final RedisKeySerializerV2 fallbackSerializer;

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

0 comments on commit 7220482

Please sign in to comment.