Skip to content
Snippets Groups Projects
Commit 5f2398c3 authored by Emil Ivov's avatar Emil Ivov
Browse files

Replaces "!" with "*" as immutable property prefix.

parent 45735846
No related branches found
No related tags found
No related merge requests found
......@@ -466,7 +466,7 @@ public List<String> getPropertyNamesByPrefix(String prefix,
resultKeySet);
//finally, get property names from mutable default property set.
if(immutableDefaultProperties.size() > 0)
if(defaultProperties.size() > 0)
{
propertyNameSet = defaultProperties.keySet();
......@@ -1588,7 +1588,7 @@ private void loadDefaultProperties(String fileName)
continue;
}
if (name.startsWith("!"))
if (name.startsWith("*"))
{
name = name.substring(1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment