|
@@ -90,13 +90,8 @@ public class MatchLogic {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- List<String> thresholdArr = strToList(threshold);
|
|
|
|
if ("contain".equals(condition)) {
|
|
if ("contain".equals(condition)) {
|
|
- for (String t : thresholdArr) {
|
|
|
|
- if (t.contains(value)) {
|
|
|
|
- return true;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ return threshold.contains(value);
|
|
} else {
|
|
} else {
|
|
return !threshold.contains(value);
|
|
return !threshold.contains(value);
|
|
}
|
|
}
|