diff --git a/.classpath b/.classpath index 972084b667..df1d168e2b 100644 --- a/.classpath +++ b/.classpath @@ -1,13 +1,12 @@ - - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/source/java/org/alfresco/repo/dictionary/constraint/NumericRangeConstraint.java b/source/java/org/alfresco/repo/dictionary/constraint/NumericRangeConstraint.java index 7f75c97ac4..2794842c05 100644 --- a/source/java/org/alfresco/repo/dictionary/constraint/NumericRangeConstraint.java +++ b/source/java/org/alfresco/repo/dictionary/constraint/NumericRangeConstraint.java @@ -102,7 +102,7 @@ public class NumericRangeConstraint extends AbstractConstraint { if (maxValue < this.minValue) { - throw new DictionaryException(ERR_INVALID_MAX_VALUE, minValue); + throw new DictionaryException(ERR_INVALID_MAX_VALUE, maxValue); } this.maxValue = maxValue; }