Skips empty property names in configuration service and provisioning.

cusax-fix
Damian Minkov 14 years ago
parent f5ab22a881
commit 5b0151fa18

@ -604,6 +604,10 @@ private void updateConfiguration(final File file)
String key = (String)entry.getKey();
Object value = entry.getValue();
// skip empty keys, prevent them going into the configuration
if(key.trim().length() == 0)
continue;
if(key.equals(PROVISIONING_ALLOW_PREFIX_PROP))
{
String prefixes[] = ((String)value).split("\\|");

Loading…
Cancel
Save