fix args matcher

This commit is contained in:
Doug MacEachern 2005-03-02 03:53:19 +00:00
parent 9d33872a93
commit ae4f5eddfe
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }
} }