opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/DN2URI.java
@@ -67,7 +67,7 @@ { private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass(); private static final byte STRING_SEPARATOR = (byte) 0x00; private static final byte STRING_SEPARATOR = 0x00; /** * The key comparator used for the DN database. @@ -618,7 +618,7 @@ byte[] suffix = Arrays.copyOf(baseDN, baseDN.length+1); suffix[suffix.length - 1] = special; byte[] end = Arrays.copyOf(suffix, suffix.length); end[end.length - 1] = (byte) (special + 1); end[end.length - 1] = special + 1; /* * Set the ending value to a value of equal length but slightly opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/EntryContainer.java
@@ -1087,7 +1087,7 @@ * No possibility of overflow here. */ byte[] end = Arrays.copyOf(suffix, suffix.length); end[end.length - 1] = (byte) (special + 1); end[end.length - 1] = special + 1; // Set the starting value. byte[] begin; opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/IndexInputBuffer.java
@@ -116,7 +116,7 @@ if (leftToRead < cache.remaining()) { cache.limit((int) (cache.position() + leftToRead)); bytesToRead = (int) leftToRead; bytesToRead = leftToRead; } else { opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/IndexInputBuffer.java
@@ -109,7 +109,7 @@ if (leftToRead < cache.remaining()) { cache.limit((int) (cache.position() + leftToRead)); bytesToRead = (int) leftToRead; bytesToRead = leftToRead; } else { opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/GenerationIdChecksum.java
@@ -59,7 +59,7 @@ */ if ((b != 0x0D) && (b != 0x0A)) // CR=0D and LF=0A { checksum += (long) b; checksum += b; } } opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/UpdateMsg.java
@@ -53,7 +53,7 @@ protected AssuredMode assuredMode = AssuredMode.SAFE_DATA_MODE; /** When assured mode is safe data, gives the requested level. */ protected byte safeDataLevel = (byte)1; protected byte safeDataLevel = 1; /** The payload that must be encoded in this message. */ private final byte[] payload; opendj-server-legacy/src/main/java/org/opends/server/replication/server/DataServerHandler.java
@@ -66,7 +66,7 @@ /** DS assured mode (relevant if assured replication enabled). */ private AssuredMode assuredMode = AssuredMode.SAFE_DATA_MODE; /** DS safe data level (relevant if assured mode is safe data). */ private byte safeDataLevel = (byte) -1; private byte safeDataLevel = -1; private Set<String> eclIncludes = new HashSet<String>(); private Set<String> eclIncludesForDeletes = new HashSet<String>();