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

Jean-Noël Rouvignac
03.18.2016 0494a58c31ae6df20f4024c52248a8ff34b5612e
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/task/ModifyEntryTask.java
@@ -96,7 +96,7 @@
    this.treePath = path;
    DN newDn = newEntry.getName();
    oldDn = DN.valueOf(oldEntry.getDN());
    oldDn = oldEntry.getDN();
    for (BackendDescriptor backend : info.getServerDescriptor().getBackends())
    {
      for (BaseDNDescriptor baseDN : backend.getBaseDns())
@@ -228,7 +228,7 @@
            }
          });
          conn.getLdapContext().modifyAttributes(Utilities.getJNDIName(oldEntry.getDN()), mods);
          conn.getLdapContext().modifyAttributes(Utilities.getJNDIName(oldEntry.getDN().toString()), mods);
          SwingUtilities.invokeLater(new Runnable()
          {
@@ -515,7 +515,7 @@
       * modifications.
       */
      ByteString oldRdnValueDeleted = null;
      RDN oldRDN = DN.valueOf(oldEntry.getDN()).rdn();
      RDN oldRDN = oldEntry.getDN().rdn();
      for (AVA ava : oldRDN)
      {
        if (ava.getAttributeType().equals(attrDesc.getAttributeType()))