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

Matthew Swift
10.31.2012 bfac87b40a7e28c35368c7e679749ec19b113098
Fix OPENDJ-480: The Connection.readEntry() method seems to ignore the attributeDescriptions argument.
1 files modified
2 ■■■ changed files
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractConnection.java 2 ●●● patch | view | raw | blame | history
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractConnection.java
@@ -314,7 +314,7 @@
    @Override
    public SearchResultEntry readEntry(final String baseObject,
            final String... attributeDescriptions) throws ErrorResultException {
        return readEntry(DN.valueOf(baseObject));
        return readEntry(DN.valueOf(baseObject), attributeDescriptions);
    }
    /**