mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
22.15.2014 261e45d9986e4037c00b0651c17cbe14a608e3f8
Code cleanup


EntryIDSet.java:
Removed unused code.
1 files modified
15 ■■■■■ changed files
opendj-sdk/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/EntryIDSet.java 15 ●●●●● patch | view | raw | blame | history
opendj-sdk/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/EntryIDSet.java
@@ -61,8 +61,7 @@
  /** Create a new undefined set. */
  public EntryIDSet()
  {
    this.key = null;
    this.undefinedSize = Long.MAX_VALUE;
    this(Long.MAX_VALUE);
  }
  /**
@@ -79,18 +78,6 @@
  /**
   * Create a new entry ID set from the raw database value.
   *
   * @param keyBytes The database key that contains this value.
   * @param bytes The database value, or null if there are no entry IDs.
   */
  public EntryIDSet(byte[] keyBytes, byte[] bytes)
  {
    this(keyBytes != null ? ByteString.wrap(keyBytes) : null,
        bytes != null ? ByteString.wrap(bytes) : null);
  }
  /**
   * Create a new entry ID set from the raw database value.
   *
   * @param key
   *          The database key that contains this value.
   * @param bytes