|
@@ -305,10 +305,11 @@ public class KlRegularConfigFacade extends KlRegularConfigServiceImpl {
|
|
|
if (ListUtil.isNotEmpty(regexGroupData)) {
|
|
|
for (List<String> groupContents : regexGroupData) {
|
|
|
if (ListUtil.isNotEmpty(groupContents)) {
|
|
|
- String s = groupContents.get(2);
|
|
|
- if (StringUtil.isBlank(s)) {
|
|
|
- s = "";
|
|
|
+ String s = "";
|
|
|
+ if(groupContents.size() > 2){
|
|
|
+ s = groupContents.get(2);
|
|
|
}
|
|
|
+
|
|
|
ruleCompileMap.put(groupContents.get(0) + "_" + groupContents.get(1), s);
|
|
|
}
|
|
|
}
|