Merge pull request #2127 from joe776/master

Fix a typo in an exception message
This commit is contained in:
Lukas Eder 2013-01-18 18:01:28 -08:00
commit 16dbbf66ac

View File

@ -66,7 +66,7 @@ class CombinedCondition extends AbstractCondition {
}
for (Condition condition : conditions) {
if (condition == null) {
throw new IllegalArgumentException("The argument 'conditions' must contain null");
throw new IllegalArgumentException("The argument 'conditions' must not contain null");
}
}