NIFI-1142: Added typo that referenced the wrong function name when indicating that isEmpty has the wrong number of arguments

This commit is contained in:
Mark Payne 2015-11-10 10:55:08 -05:00
parent 73c1671975
commit 358cabafa3
1 changed files with 1 additions and 1 deletions

View File

@ -1153,7 +1153,7 @@ public class Query {
return addToken(new IsNullEvaluator(toStringEvaluator(subjectEvaluator)), "isNull");
}
case IS_EMPTY: {
verifyArgCount(argEvaluators, 0, "isNull");
verifyArgCount(argEvaluators, 0, "isEmpty");
return addToken(new IsEmptyEvaluator(toStringEvaluator(subjectEvaluator)), "isEmpty");
}
case NOT_NULL: {