mirror of https://github.com/apache/nifi.git
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:
parent
73c1671975
commit
358cabafa3
|
@ -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: {
|
||||
|
|
Loading…
Reference in New Issue