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

Jean-Noel Rouvignac
23.44.2015 6638c2755466ca601450700d5a39f390f23d4781
opendj-server-legacy/src/main/java/org/opends/admin/ads/ADSContext.java
@@ -400,7 +400,7 @@
    return nameToAdminUserProperty.get(name);
  }
  // The context used to retrieve information
  /** The context used to retrieve information. */
  private final InitialLdapContext dirContext;
@@ -1176,7 +1176,7 @@
    createAdminDataContainers();
  }
  // Create container entries.
  /** Create container entries. */
  private void createAdminDataContainers() throws ADSContextException
  {
    // Create the DIT below the administration suffix
@@ -2226,14 +2226,11 @@
   */
  private static String getRdn(String rdnName) throws ADSContextException
  {
    CompositeName nameObj;
    String rdn;
    //
    // Transform the JNDI name into a RDN string
    //
    try {
      nameObj = new CompositeName(rdnName);
      rdn = nameObj.get(0);
      CompositeName nameObj = new CompositeName(rdnName);
      String rdn = nameObj.get(0);
      return rdn;
    }
    catch (InvalidNameException x)
    {
@@ -2241,7 +2238,6 @@
      throw new ADSContextException(
          ADSContextException.ErrorType.ERROR_UNEXPECTED, x);
    }
    return rdn;
  }
  /**