[MRM-719] closure does not need to be a component

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@631726 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2008-02-27 21:09:05 +00:00
parent b2315a0cf9
commit 433deddf4e
1 changed files with 1 additions and 5 deletions

View File

@ -31,10 +31,6 @@ import org.slf4j.LoggerFactory;
*
* @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
* @version $Id$
*
* @plexus.component role="org.apache.commons.collections.Closure"
* role-hint="process-artifact"
* instantiation-strategy="per-lookup"
*/
class ProcessArchivaArtifactClosure
implements Closure
@ -55,7 +51,7 @@ class ProcessArchivaArtifactClosure
}
catch ( ConsumerException e )
{
log.warn( "Unable to process artifact [" + artifact + "] with consumer [" + consumer.getId() + "]" );
log.warn( "Unable to process artifact [" + artifact + "] with consumer [" + consumer.getId() + "]", e );
}
}