Skip to content

Commit

Permalink
FORGE-751 Append to correct List
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakknutsen committed Jan 17, 2013
1 parent d789fab commit db8d210
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public List<Dependency> getManagedDependencies()
List<Dependency> result = new ArrayList<Dependency>();
for (Dependency dependency : managedDependencies)
{
managedDependencies.add(resolveProperties(dependency));
result.add(resolveProperties(dependency));
}
return result;
}
Expand Down

0 comments on commit db8d210

Please sign in to comment.