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

Matthew Swift
16.58.2011 2665ee08dbcfa5a2b86eb7e9527bb7ac7002a9e2
Fix readSchemaForEntry implementation.
1 files modified
3 ■■■■ changed files
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractAsynchronousConnection.java 3 ●●●● patch | view | raw | blame | history
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractAsynchronousConnection.java
@@ -23,6 +23,7 @@
 *
 *
 *      Copyright 2009-2010 Sun Microsystems, Inc.
 *      Portions copyright 2011 ForgeRock AS
 */
package org.forgerock.opendj.ldap;
@@ -383,7 +384,7 @@
      final ResultHandler<? super Schema> handler)
      throws UnsupportedOperationException, IllegalStateException
  {
    return Schema.readSchema(this, name, handler);
    return Schema.readSchemaForEntry(this, name, handler);
  }