Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
NEXUS-4730: changing attribute names
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed Dec 21, 2011
1 parent 6fbdb01 commit 240522b
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -23,7 +23,6 @@
import java.util.Map;

import org.sonatype.nexus.proxy.attributes.Attributes;
import org.sonatype.nexus.proxy.item.StorageItem;

import com.google.common.base.Preconditions;

Expand Down Expand Up @@ -160,7 +159,7 @@ protected void setString( final String key, final String value )

protected String getKeyForAttribute( final String attributeName )
{
return String.format( "%s-%s", StorageItem.class.getName(), Preconditions.checkNotNull( attributeName ) );
return String.format( "%s-%s", "storageItem", Preconditions.checkNotNull( attributeName ) );
}

// ==
Expand Down

0 comments on commit 240522b

Please sign in to comment.