Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.0.0
-
None
Description
HostConfigEntry.getProperty(String name, String defaultValue) contains
Map<String, String> props = getProperties(); if (GenericUtils.isEmpty(props)) { return null; }
This should be
Map<String, String> props = getProperties(); if (GenericUtils.isEmpty(props)) { return defaultValue; }