mirror of https://github.com/apache/archiva.git
no need to rebuild the collection if exists
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1447475 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2c4b7c6c4c
commit
95f86b2fe2
|
@ -118,6 +118,10 @@ public class RedbackRuntimeConfiguration
|
|||
|
||||
public List<PropertyEntry> getConfigurationPropertiesEntries()
|
||||
{
|
||||
if ( configurationPropertiesEntries != null )
|
||||
{
|
||||
return configurationPropertiesEntries;
|
||||
}
|
||||
configurationPropertiesEntries = new ArrayList<PropertyEntry>( getConfigurationProperties().size() );
|
||||
for ( Map.Entry<String, String> entry : getConfigurationProperties().entrySet() )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue