We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7db7c48 + 64a37b3 commit 8445f27Copy full SHA for 8445f27
db/common/src/main/java/org/commonjava/indy/db/common/DefaultArtifactStoreQuery.java
@@ -433,7 +433,7 @@ public Set<Group> getGroupsAffectedBy( Collection<StoreKey> keys )
433
{
434
ArtifactStore store = dataManager.getArtifactStore( key );
435
436
- if ( !processed.contains( store.getKey() ) && ( store instanceof Group ) )
+ if ( ( store instanceof Group ) && !processed.contains( store.getKey() ) )
437
438
Group g = (Group) store;
439
if ( g.getConstituents() != null && g.getConstituents().contains( next ) )
0 commit comments