Skip to content

Commit

Permalink
Merge pull request wildfly#17352 from gabrielpadilh4/WFLY-18699
Browse files Browse the repository at this point in the history
[WFLY-18699] Adapt WildFly to use ModuleSpecification.getMutableUserDep…
  • Loading branch information
bstansberry authored Oct 28, 2023
2 parents 61c55a8 + b9c26cc commit 600e835
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package org.jboss.as.appclient.deployment;

import java.util.HashSet;
import java.util.ListIterator;
import java.util.Iterator;
import java.util.Set;

import org.jboss.as.server.deployment.Attachments;
Expand Down Expand Up @@ -58,7 +58,7 @@ public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentU
moduleIdentifiers.add(module.getAttachment(Attachments.MODULE_IDENTIFIER));
}

final ListIterator<ModuleDependency> iterator = moduleSpecification.getMutableUserDependencies().listIterator();
final Iterator<ModuleDependency> iterator = moduleSpecification.getMutableUserDependencies().iterator();
while (iterator.hasNext()) {
final ModuleDependency dep = iterator.next();
final ModuleIdentifier identifier = dep.getIdentifier();
Expand Down

0 comments on commit 600e835

Please sign in to comment.