]> source.dussan.org Git - archiva.git/commitdiff
remove a FIXME as it's fixed and covered by a unit test too RepositoryGroupAdminTest...
authorOlivier Lamy <olamy@apache.org>
Mon, 24 Oct 2011 19:35:43 +0000 (19:35 +0000)
committerOlivier Lamy <olamy@apache.org>
Mon, 24 Oct 2011 19:35:43 +0000 (19:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1188327 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-default/src/main/java/org/apache/archiva/admin/repository/managed/DefaultManagedRepositoryAdmin.java
archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-default/src/test/java/org/apache/archiva/admin/repository/managed/ManagedRepositoryAdminTest.java

index ea385ff478f5bb7f071fec52d46d35dd8dbf6df4..15d2bc823e1d57ba94856f157d5921efceb6b466 100644 (file)
@@ -263,8 +263,6 @@ public class DefaultManagedRepositoryAdmin
         return repository;
     }
 
-
-    // FIXME cleanup repositoryGroups when deleting a ManagedRepo
     public Boolean deleteManagedRepository( String repositoryId, AuditInformation auditInformation,
                                             boolean deleteContent )
         throws RepositoryAdminException
index e4f60e4bfd52fd0f586f88ccba359aa7de423ea2..4adab3b17241987c06182985f3bab2badf9055a7 100644 (file)
@@ -35,6 +35,10 @@ public class ManagedRepositoryAdminTest
 {
     public static final String STAGE_REPO_ID_END = DefaultManagedRepositoryAdmin.STAGE_REPO_ID_END;
 
+
+    String repoId = "test-new-one";
+    String repoLocation = APPSERVER_BASE_PATH + File.separator + repoId;
+
     @Test
     public void getAllManagedRepos()
         throws Exception
@@ -69,10 +73,6 @@ public class ManagedRepositoryAdminTest
     {
         mockAuditListener.clearEvents();
 
-        String repoId = "test-new-one";
-
-        String repoLocation = APPSERVER_BASE_PATH + File.separator + repoId;
-
         File repoDir = clearRepoLocation( repoLocation );
 
         List<ManagedRepository> repos = managedRepositoryAdmin.getManagedRepositories();
@@ -116,9 +116,6 @@ public class ManagedRepositoryAdminTest
     public void updateDeleteManagedRepo()
         throws Exception
     {
-        String repoId = "test-new-one";
-
-        String repoLocation = APPSERVER_BASE_PATH + File.separator + "new-path";
 
         File repoDir = clearRepoLocation( repoLocation );
 
@@ -177,9 +174,6 @@ public class ManagedRepositoryAdminTest
         throws Exception
     {
 
-        String repoId = "test-new-one";
-        String repoLocation = APPSERVER_BASE_PATH + File.separator + repoId;
-
         File repoDir = clearRepoLocation( repoLocation );
 
         mockAuditListener.clearEvents();
@@ -234,9 +228,6 @@ public class ManagedRepositoryAdminTest
     public void updateDeleteManagedRepoWithStagedRepo()
         throws Exception
     {
-        String repoId = "test-new-one";
-
-        String repoLocation = APPSERVER_BASE_PATH + File.separator + "new-path";
 
         String stageRepoLocation = APPSERVER_BASE_PATH + File.separator + repoId;
 
@@ -312,6 +303,7 @@ public class ManagedRepositoryAdminTest
 
     }
 
+
     //----------------------------------
     // utility methods
     //----------------------------------