Skip to content

Commit

Permalink
Don't use io.vertx.core.impl.ConcurrentHashSet (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalluck authored Jun 1, 2021
1 parent 481c960 commit 57d0141
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@

import com.redhat.red.build.koji.model.xmlrpc.KojiArchiveInfo;

import io.vertx.core.impl.ConcurrentHashSet;

/**
* Build Finder for PNC
*
Expand Down Expand Up @@ -144,7 +142,7 @@ private void populatePncBuildsMetadata(ConcurrentHashMap<String, PncBuild> pncBu

private Set<EnhancedArtifact> lookupArtifactsInPnc(ConcurrentHashMap<Checksum, Collection<String>> checksumTable)
throws RemoteResourceException {
Set<EnhancedArtifact> artifacts = new ConcurrentHashSet<>();
Set<EnhancedArtifact> artifacts = ConcurrentHashMap.newKeySet();
RemoteResourceExceptionWrapper exceptionWrapper = new RemoteResourceExceptionWrapper();

checksumTable.forEach(concurrentMapParallelismThreshold, (checksum, fileNames) -> {
Expand Down

0 comments on commit 57d0141

Please sign in to comment.