rengb пре 5 година
родитељ
комит
45d2cd7ce0
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      trans/src/main/java/com/lantone/qc/trans/comsis/Preproc.java

+ 1 - 1
trans/src/main/java/com/lantone/qc/trans/comsis/Preproc.java

@@ -106,7 +106,7 @@ public class Preproc {
 
         Map<String,String> sectionsNew = Maps.newHashMap();
         sections.keySet().forEach(key->{
-            sectionsNew.put(key.replaceAll("\\s\\p{Zs}",""),sections.get(key));
+            sectionsNew.put(key.replaceAll("[\\s\\p{Zs}]",""),sections.get(key));
         });
 
         return sectionsNew;