]> source.dussan.org Git - archiva.git/commitdiff
remove not anymore used ROLE field
authorOlivier Lamy <olamy@apache.org>
Mon, 9 Apr 2012 21:24:47 +0000 (21:24 +0000)
committerOlivier Lamy <olamy@apache.org>
Mon, 9 Apr 2012 21:24:47 +0000 (21:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1311465 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-base/archiva-converter/src/main/java/org/apache/archiva/converter/legacy/LegacyRepositoryConverter.java
archiva-modules/archiva-scheduler/archiva-scheduler-api/src/main/java/org/apache/archiva/scheduler/ArchivaTaskScheduler.java

index bb1c51b60c9d9011a7d97c5811f3bb8635a4d8b3..8cbb8e6557a067df0624f55eb468e42403d3a534 100644 (file)
@@ -26,20 +26,18 @@ import java.util.List;
 
 /**
  * Convert an entire repository.
- * 
  */
 public interface LegacyRepositoryConverter
 {
-    String ROLE = LegacyRepositoryConverter.class.getName();
 
     /**
      * Convert a legacy repository to a modern repository. This means a Maven 1.x repository
      * using v3 POMs to a Maven 2.x repository using v4.0.0 POMs.
      *
-     * @param legacyRepositoryDirectory the directory of the legacy repository. 
+     * @param legacyRepositoryDirectory      the directory of the legacy repository.
      * @param destinationRepositoryDirectory the directory of the modern repository.
-     * @param fileExclusionPatterns the list of patterns to exclude from the conversion.
-     * @throws RepositoryConversionException 
+     * @param fileExclusionPatterns          the list of patterns to exclude from the conversion.
+     * @throws RepositoryConversionException
      */
     void convertLegacyRepository( File legacyRepositoryDirectory, File destinationRepositoryDirectory,
                                   List<String> fileExclusionPatterns )
index 5a20880c5c868e5ea4422c4352a20384fa4c2a2f..dde0a28bf10773f1af376fe1a9f4fcbca84e1789 100644 (file)
@@ -27,10 +27,6 @@ import org.codehaus.plexus.taskqueue.TaskQueueException;
  */
 public interface ArchivaTaskScheduler<T extends Task>
 {
-    /**
-     * The Plexus component role.
-     */
-    public final static String ROLE = ArchivaTaskScheduler.class.getName();
 
     /**
      * Adds the task to the scanning queue.