From db25493c04798fe4a29b65134c82722b619ab3de Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Sat, 25 Jan 2014 06:46:40 -0500 Subject: [PATCH] javadoc corrections Former-commit-id: 7dead0cee614e4f1e8f8b04fd8852d06710c0615 --- .../analyzer/DependencyBundlingAnalyzer.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/analyzer/DependencyBundlingAnalyzer.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/analyzer/DependencyBundlingAnalyzer.java index 7c36ba8cd..b5ad4cdcc 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/analyzer/DependencyBundlingAnalyzer.java +++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/analyzer/DependencyBundlingAnalyzer.java @@ -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 dependenciesToRemove) { dependency.addRelatedDependency(relatedDependency);