fix args matcher
This commit is contained in:
parent
9d33872a93
commit
ae4f5eddfe
|
@ -122,7 +122,7 @@ public class ProcessQueryHelper {
|
||||||
(StringMatcher)stringMatchers.get(op);
|
(StringMatcher)stringMatchers.get(op);
|
||||||
|
|
||||||
for (int i=0; i<args.length; i++) {
|
for (int i=0; i<args.length; i++) {
|
||||||
if (matcher.match(value, args[i])) {
|
if (matcher.match(args[i], value)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue