]> source.dussan.org Git - archiva.git/commitdiff
add comment
authorOlivier Lamy <olamy@apache.org>
Wed, 2 Apr 2014 01:29:07 +0000 (01:29 +0000)
committerOlivier Lamy <olamy@apache.org>
Wed, 2 Apr 2014 01:29:07 +0000 (01:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1583849 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-rest/archiva-rest-services/src/main/java/org/apache/archiva/rest/services/DefaultBrowseService.java
archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/CassandraMetadataRepository.java

index 348a2dd51f96d7dc25f7c463cae08e442d9efea6..855d3d67eebacbc1bb6b606079a37c1f77e93d81 100644 (file)
@@ -118,12 +118,11 @@ public class DefaultBrowseService
         // TODO: this logic should be optional, particularly remembering we want to keep this code simple
         //       it is located here to avoid the content repository implementation needing to do too much for what
         //       is essentially presentation code
-        Set<String> namespacesToCollapse;
+        Set<String> namespacesToCollapse = new LinkedHashSet<String>();
         RepositorySession repositorySession = repositorySessionFactory.createSession();
         try
         {
             MetadataResolver metadataResolver = repositorySession.getResolver();
-            namespacesToCollapse = new LinkedHashSet<String>();
 
             for ( String repoId : selectedRepos )
             {
index da38d0e8eb963eefc06ce3757622f6bb084005bd..226f82e3e1e72c5d471074f14ae1b8293a09489a 100644 (file)
@@ -479,7 +479,7 @@ public class CassandraMetadataRepository
 
     }
 
-
+    // FIXME this one need peformance improvement maybe a cache?
     @Override
     public Collection<String> getRootNamespaces( final String repoId )
         throws MetadataResolutionException
@@ -502,7 +502,7 @@ public class CassandraMetadataRepository
         return namespaces;
     }
 
-
+    // FIXME this one need peformance improvement maybe a cache?
     @Override
     public Collection<String> getNamespaces( final String repoId, final String namespaceId )
         throws MetadataResolutionException
@@ -539,7 +539,7 @@ public class CassandraMetadataRepository
 
     }
 
-
+    // FIXME this one need peformance improvement maybe a cache?
     public List<String> getNamespaces( final String repoId )
         throws MetadataResolutionException
     {