From df4cc59efae9beadf5bb61dc9aeb9ab98dd2863b Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Tue, 5 Dec 2017 05:44:41 -0500 Subject: [PATCH] ide suggested changes --- .../dependencycheck/xml/hints/EvidenceMatcher.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/xml/hints/EvidenceMatcher.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/xml/hints/EvidenceMatcher.java index 393fc6d88..73780fa99 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/xml/hints/EvidenceMatcher.java +++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/xml/hints/EvidenceMatcher.java @@ -38,30 +38,30 @@ public class EvidenceMatcher { /** * The name that the {@link Evidence} should have for a match. */ - private String name; + private final String name; /** * The source that the {@link Evidence} should have for a match. A * {@code null}-value is allowed and functions as a wildcard. */ - private String source; + private final String source; /** * The value that the {@link Evidence} should have for a match. */ - private String value; + private final String value; /** * Whether the {@link EvidenceMatcher#value} should be interpreted as a * regular expression. */ - private boolean regex = false; + private final boolean regex; /** * The confidence that the {@link Evidence} should have for a match. A * {@code null}-value is allowed and functions as a wildcard. */ - private Confidence confidence; + private final Confidence confidence; /** * Creates a new EvidenceMatcher objects.