mirror of https://github.com/apache/archiva.git
fixed formatting
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@951241 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d09f0872af
commit
f51b049d51
|
@ -44,12 +44,12 @@ public class GenericMetadataFacet
|
|||
|
||||
public void fromProperties( Map<String, String> properties )
|
||||
{
|
||||
if( additionalProperties == null )
|
||||
if ( additionalProperties == null )
|
||||
{
|
||||
additionalProperties = new TreeMap<String, String>();
|
||||
}
|
||||
|
||||
for( String key : properties.keySet() )
|
||||
for ( String key : properties.keySet() )
|
||||
{
|
||||
additionalProperties.put( key, properties.get( key ) );
|
||||
}
|
||||
|
@ -59,9 +59,9 @@ public class GenericMetadataFacet
|
|||
{
|
||||
Map<String, String> properties = new TreeMap<String, String>();
|
||||
|
||||
if( additionalProperties != null )
|
||||
if ( additionalProperties != null )
|
||||
{
|
||||
for( String key : additionalProperties.keySet() )
|
||||
for ( String key : additionalProperties.keySet() )
|
||||
{
|
||||
properties.put( key, additionalProperties.get( key ) );
|
||||
}
|
||||
|
|
|
@ -23,7 +23,8 @@ import org.apache.archiva.metadata.model.MetadataFacet;
|
|||
import org.apache.archiva.metadata.model.MetadataFacetFactory;
|
||||
|
||||
/**
|
||||
* @plexus.component role="org.apache.archiva.metadata.model.MetadataFacetFactory" role-hint="org.apache.archiva.metadata.generic"
|
||||
* @plexus.component role="org.apache.archiva.metadata.model.MetadataFacetFactory"
|
||||
* role-hint="org.apache.archiva.metadata.generic"
|
||||
*/
|
||||
public class GenericMetadataFacetFactory
|
||||
implements MetadataFacetFactory
|
||||
|
|
Loading…
Reference in New Issue