javadoc corrections

Former-commit-id: 66eafb0407a27982c30d2a1933860216722ad06a
This commit is contained in:
Jeremy Long
2014-01-25 06:46:40 -05:00
parent d4d193fe9d
commit 96582ff622

View File

@@ -165,8 +165,10 @@ public class DependencyBundlingAnalyzer extends AbstractAnalyzer implements Anal
* Adds the relatedDependency to the dependency's related dependencies.
*
* @param dependency the main dependency
* @param nextDependency the related dependency
* @param relatedDependency a collection of dependencies to be removed from the main analysis loop
* @param relatedDependency a collection of dependencies to be removed from the main analysis loop, this is the
* source of dependencies to remove
* @param dependenciesToRemove a collection of dependencies that will be removed from the main analysis loop, this
* function adds to this collection
*/
private void mergeDependencies(final Dependency dependency, final Dependency relatedDependency, final Set<Dependency> dependenciesToRemove) {
dependency.addRelatedDependency(relatedDependency);