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

Matthew Swift
10.13.2013 e50a90721da9708fb14a28af76f44309fd7c49a4
Delegate close() method in order to avoid it becoming converted to a close(UnbindRequest,String).
1 files modified
5 ■■■■■ changed files
opendj3/opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/Context.java 5 ●●●●● patch | view | raw | blame | history
opendj3/opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/Context.java
@@ -355,6 +355,11 @@
            }
            @Override
            public void close() {
                connection.close();
            }
            @Override
            public void close(final UnbindRequest request, final String reason) {
                connection.close(request, reason);
            }