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

Matthew Swift
19.51.2013 813c78e0dd2862ff7eb2c80963d80ab81e1c1bf9
opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/condition/NOTCondition.java
@@ -32,7 +32,7 @@
import org.opends.server.admin.server.ServerManagedObject;
import org.opends.server.config.ConfigException;
import com.forgerock.opendj.util.Validator;
import org.forgerock.util.Reject;
/**
 * A condition which evaluates to <code>true</code> if the sub-condition is
@@ -51,7 +51,7 @@
     *            The sub-condition which will be inverted.
     */
    public NOTCondition(Condition condition) {
        Validator.ensureNotNull(condition);
        Reject.ifNull(condition);
        this.condition = condition;
    }