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

matthew_swift
13.48.2007 567150121840af35c215b2a4323cee149fc5802a
opends/src/server/org/opends/server/admin/server/DNBuilder.java
@@ -99,23 +99,8 @@
   * Create a new DN builder.
   */
  public DNBuilder() {
    this(LDAPProfile.getInstance());
  }
  /**
   * Create a new DN builder with the provided LDAP profile.
   * <p>
   * This constructor is package private and only intended for testing
   * purposes against a mock LDAP profile.
   *
   * @param profile
   *          The LDAP profile to use when building the DN.
   */
  DNBuilder(LDAPProfile profile) {
    this.dn = DN.nullDN();
    this.profile = profile;
    this.profile = LDAPProfile.getInstance();
  }