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