Commit 91ed66ec authored by Almark Ming's avatar Almark Ming

Update RegexSelector.java

parent 83926970
...@@ -26,7 +26,7 @@ public class RegexSelector implements Selector { ...@@ -26,7 +26,7 @@ public class RegexSelector implements Selector {
if (StringUtils.isBlank(regexStr)) { if (StringUtils.isBlank(regexStr)) {
throw new IllegalArgumentException("regex must not be empty"); throw new IllegalArgumentException("regex must not be empty");
} }
/* Can't detect '\(', '(?:)' so that would be result in ArrayIndexOutOfBoundsException /* Can't detect '\(', '(?:)' so that would result in ArrayIndexOutOfBoundsException
if (!StringUtils.contains(regexStr, "(") && !StringUtils.contains(regexStr, ")")) { if (!StringUtils.contains(regexStr, "(") && !StringUtils.contains(regexStr, ")")) {
regexStr = "(" + regexStr + ")"; regexStr = "(" + regexStr + ")";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment