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

matthew_swift
01.35.2010 96483a719fbc07f7b1ab1e1aed482743634a615e
sdk/tests/unit-tests-testng/src/org/opends/sdk/LDAPServer.java
@@ -157,7 +157,8 @@
  private LDAPServer()
  {
    // Add the root dse first.
    entryMap.put(DN.rootDN(), Types.unmodifiableEntry(new LinkedHashMapEntry()));
    entryMap.put(DN.rootDN(),
        Entries.unmodifiableEntry(new LinkedHashMapEntry()));
    for (int i = 0; i < 1000; i++)
    {
      final String dn = String.format("uid=user.%d,ou=people,o=test", i);
@@ -169,7 +170,7 @@
      final Entry e = new LinkedHashMapEntry("dn: " + dn,
          "objectclass: person", "objectclass: inetorgperson",
          "objectclass: top", cn, sn, uid);
      entryMap.put(d, Types.unmodifiableEntry(e));
      entryMap.put(d, Entries.unmodifiableEntry(e));
    }
  }