From 4a4c1e75da6af71c5ebb2479e25be606800ae9b1 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Sat, 5 Mar 2016 13:18:32 -0500 Subject: [PATCH] doclint fixes --- .../dependencycheck/dependency/EvidenceCollection.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() {