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

Jean-Noel Rouvignac
29.47.2014 e1f131fbeb3687cdba3fb1eaf379911645bc7d21
opendj3-server-dev/src/server/org/opends/server/backends/jeb/EntryContainer.java
@@ -119,7 +119,7 @@
  /**
   * The backend to which this entry entryContainer belongs.
   */
  private final Backend backend;
  private final Backend<?> backend;
  /**
   * The root container in which this entryContainer belongs.
@@ -1702,9 +1702,7 @@
          EntryID nodeID = dn2id.get(txn, dn, LockMode.DEFAULT);
          if (nodeID == null)
          {
            LocalizableMessage msg =
              ERR_JEB_MISSING_DN2ID_RECORD.get(dn.toString());
            throw new JebException(msg);
            throw new JebException(ERR_JEB_MISSING_DN2ID_RECORD.get(dn));
          }
          // Insert into id2subtree for this node.
@@ -2065,9 +2063,7 @@
      EntryID parentID = dn2id.get(txn, parentDN, LockMode.DEFAULT);
      if (parentID == null)
      {
        LocalizableMessage msg =
          ERR_JEB_MISSING_DN2ID_RECORD.get(parentDN.toString());
        throw new JebException(msg);
        throw new JebException(ERR_JEB_MISSING_DN2ID_RECORD.get(parentDN));
      }
      if(indexBuffer != null)