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

Matthew Swift
05.45.2014 3bacede53a932eea576d4b814ab20c2e18b5040c
opendj-sdk/opendj-config/src/main/java/org/forgerock/opendj/config/IntegerPropertyDefinition.java
@@ -229,7 +229,7 @@
     * {@inheritDoc}
     */
    @Override
    public void validateValue(Integer value, PropertyDefinitionsOptions options) {
    public void validateValue(Integer value) {
        Reject.ifNull(value);
        if (!allowUnlimited && value < lowerLimit) {
@@ -266,7 +266,7 @@
     * {@inheritDoc}
     */
    @Override
    public Integer decodeValue(String value, PropertyDefinitionsOptions options) {
    public Integer decodeValue(String value) {
        Reject.ifNull(value);
        if (allowUnlimited) {
@@ -283,7 +283,7 @@
        }
        try {
            validateValue(i, options);
            validateValue(i);
        } catch (PropertyException e) {
            throw PropertyException.illegalPropertyValueException(this, value);
        }