浏览代码

去除多余的逗号

runphp 3 年之前
父节点
当前提交
d28f81dc68
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/utils/ReUtil.java

+ 1 - 1
ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/utils/ReUtil.java

@@ -18,7 +18,7 @@ public class ReUtil
      * 正则中需要被转义的关键字
      */
     public final static Set<Character> RE_KEYS = new HashSet<>(
-            Arrays.asList('$', '(', ')', '*', '+', '.', '[', ']', '?', '\\', '^', '{', '}', '|'));;
+            Arrays.asList('$', '(', ')', '*', '+', '.', '[', ']', '?', '\\', '^', '{', '}', '|'));
 
     /**
      * 正则替换指定值<br>