opendj-server-legacy/src/main/java/org/opends/server/admin/BooleanPropertyDefinition.java
@@ -48,10 +48,8 @@ * the standard boolean string parser and supports common true/false synonyms * used in configuration. */ private static final Map<String, Boolean> VALUE_MAP; private static final Map<String, Boolean> VALUE_MAP = new HashMap<>(); static { VALUE_MAP = new HashMap<String, Boolean>(); // We could have more possibilities but decided against in issue 1960. VALUE_MAP.put("false", Boolean.FALSE); VALUE_MAP.put("true", Boolean.TRUE);