From 2b16072d6e66faae7bc82ab7841427b30efb14b4 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Sat, 25 Jan 2014 07:02:29 -0500 Subject: [PATCH] minor changes to comply with checkstyle Former-commit-id: af97a1e75f24b7ba5f4596f1db409a8a24decd66 --- .../org/owasp/dependencycheck/dependency/Identifier.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/dependency/Identifier.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/dependency/Identifier.java index 945d065c6..6e44ec613 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/dependency/Identifier.java +++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/dependency/Identifier.java @@ -49,10 +49,13 @@ public class Identifier implements Comparable { this.description = description; } + /** + * The confidence that this is the correct identifier. + */ private Confidence confidence; /** - * Get the value of confidence + * Get the value of confidence. * * @return the value of confidence */ @@ -61,7 +64,7 @@ public class Identifier implements Comparable { } /** - * Set the value of confidence + * Set the value of confidence. * * @param confidence new value of confidence */