mirror of https://github.com/apache/ant-ivy
fix bug introduced in 6d2e199
This commit is contained in:
parent
f42805ac09
commit
56c04300e8
|
|
@ -916,7 +916,7 @@ public class IvyNode implements Comparable<IvyNode> {
|
|||
Collection<Artifact> ret = new ArrayList<Artifact>();
|
||||
for (Entry<ArtifactId, Artifact> entry : allArtifacts.entrySet()) {
|
||||
if (MatcherHelper.matches(rule.getMatcher(), rule.getId(), entry.getKey())) {
|
||||
ret.add(allArtifacts.get(entry.getValue()));
|
||||
ret.add(entry.getValue());
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
|
|
|
|||
Loading…
Reference in New Issue