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

Matthew Swift
10.07.2016 a39575dc7666124c49a14f9fe1987d4b833dd367
Minor fix: change LdapPromise.thenFinally() to return an LdapPromise
1 files modified
5 ■■■■ changed files
opendj-sdk/opendj-core/src/main/java/org/forgerock/opendj/ldap/LdapPromise.java 5 ●●●● patch | view | raw | blame | history
opendj-sdk/opendj-core/src/main/java/org/forgerock/opendj/ldap/LdapPromise.java
@@ -22,7 +22,7 @@
 *
 *
 *      Copyright 2009 Sun Microsystems, Inc.
 *      Portions copyright 2014-2015 ForgeRock AS
 *      Portions copyright 2014-2016 ForgeRock AS
 */
package org.forgerock.opendj.ldap;
@@ -68,6 +68,9 @@
    LdapPromise<S> thenAlways(Runnable onResultOrException);
    @Override
    LdapPromise<S> thenFinally(Runnable onResultOrException);
    @Override
    // @Checkstyle:ignore
    <VOUT> LdapPromise<VOUT> thenAsync(AsyncFunction<? super S, VOUT, LdapException> onResult);
}