File tree 1 file changed +12
-0
lines changed
src/main/java/org/springframework/data/redis/core/convert
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1223,6 +1223,12 @@ public static class KeyspaceIdentifier {
1223
1223
public static final String DELIMITER = ":" ;
1224
1224
public static final String PHANTOM_SUFFIX = DELIMITER + PHANTOM ;
1225
1225
1226
+ /**
1227
+ * @deprecated since 2.6. Please use {@link #DELIMITER} instead.
1228
+ */
1229
+ @ Deprecated (/* since="2.6" */ )
1230
+ public static final String DELIMITTER = DELIMITER ;
1231
+
1226
1232
private final String keyspace ;
1227
1233
private final String id ;
1228
1234
private final boolean phantomKey ;
@@ -1303,6 +1309,12 @@ public static class BinaryKeyspaceIdentifier {
1303
1309
public static final byte DELIMITER = ':' ;
1304
1310
public static final byte [] PHANTOM_SUFFIX = ByteUtils .concat (new byte [] { DELIMITER }, PHANTOM );
1305
1311
1312
+ /**
1313
+ * @deprecated since 2.6. Please use {@link #DELIMITER} instead.
1314
+ */
1315
+ @ Deprecated (/* since="2.6" */ )
1316
+ public static final byte DELIMITTER = DELIMITER ;
1317
+
1306
1318
private final byte [] keyspace ;
1307
1319
private final byte [] id ;
1308
1320
private final boolean phantomKey ;
You can’t perform that action at this time.
0 commit comments