Skip to content

Commit

Permalink
delete test code
Browse files Browse the repository at this point in the history
  • Loading branch information
hailu committed May 16, 2024
1 parent b4a18cd commit cdd1eaf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ private RdbConstant() {
public static final short REDIS_RDB_TYPE_ZSET2 = 5;
public static final short REDIS_RDB_TYPE_MODULE = 6;
public static final short REDIS_RDB_TYPE_MODULE2 = 7;
public static final short REDIS_CRDT_RDB_TYPE_STRING = 8;
public static final short REDIS_RDB_TYPE_HASH_ZIPMAP = 9;
public static final short REDIS_RDB_TYPE_LIST_ZIPLIST = 10;
public static final short REDIS_RDB_TYPE_SET_INTSET = 11;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ public interface RdbParseContext {
enum RdbType {

STRING(RdbConstant.REDIS_RDB_TYPE_STRING, false, RdbStringParser::new),
CRDT_STRING(RdbConstant.REDIS_CRDT_RDB_TYPE_STRING, false, RdbStringParser::new),
LIST(RdbConstant.REDIS_RDB_TYPE_LIST,false,RdbListParser::new),
SET(RdbConstant.REDIS_RDB_TYPE_SET, false, RdbSetParser::new),
// ZSET(RdbConstant.REDIS_RDB_TYPE_ZSET),
Expand Down

0 comments on commit cdd1eaf

Please sign in to comment.