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

Jean-Noel Rouvignac
15.45.2013 bcae46bde0d363f126796164df6505b1764ea345
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/Functions.java
@@ -199,7 +199,7 @@
            public N apply(final M value, final Void p) {
                final X tmp = first.apply(value, p);
                return second.apply(tmp, p);
            };
            }
        };
    }
@@ -231,7 +231,7 @@
            public N apply(final M value, final P p) {
                final X tmp = first.apply(value, p);
                return second.apply(tmp, null);
            };
            }
        };
    }
@@ -263,7 +263,7 @@
            public N apply(final M value, final P p) {
                final X tmp = first.apply(value, null);
                return second.apply(tmp, p);
            };
            }
        };
    }