QuackatronHQ / Gigarepo

Inefficient use of String constructor JAVA-P0062
Performance
Major
a month ago2 years old
String constructor is inefficient, use raw string literals directly instead
72
73      for (String j : paramStrings) {
74        String[] vals = j.split(":");
75        params.put(vals[0].toString(), new String(vals[1]));76      }
77
78      var configElem = new ConfigData();