diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/dependency/EvidenceCollection.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/dependency/EvidenceCollection.java index 59c0431a7..ef9d512f2 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/dependency/EvidenceCollection.java +++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/dependency/EvidenceCollection.java @@ -97,7 +97,7 @@ public class EvidenceCollection implements Serializable, Iterable { * Used to iterate over evidence of the specified confidence. * * @param confidence the confidence level for the evidence to be iterated over. - * @return Iterable an iterable collection of evidence + * @return Iterable<Evidence> an iterable collection of evidence */ public final Iterable iterator(Confidence confidence) { if (confidence == Confidence.HIGHEST) { @@ -168,7 +168,7 @@ public class EvidenceCollection implements Serializable, Iterable { * Returns a set of Weightings - a list of terms that are believed to be of higher confidence when also found in another * location. * - * @return Set + * @return Set<String> */ public Set getWeighting() { return weightedStrings; @@ -225,7 +225,7 @@ public class EvidenceCollection implements Serializable, Iterable { /** * Implements the iterator interface for the Evidence Collection. * - * @return an Iterator. + * @return an Iterator<Evidence> */ @Override public Iterator iterator() {