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/IsPresentCondition.java
@@ -35,7 +35,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 and only if a particular
@@ -56,7 +56,7 @@
     *            The property name.
     */
    public IsPresentCondition(String propertyName) {
        Validator.ensureNotNull(propertyName);
        Reject.ifNull(propertyName);
        this.propertyName = propertyName;
    }