From a9fc6bf02c3fa040eade89da659468f5d1aec754 Mon Sep 17 00:00:00 2001 From: Stefan Neuhaus Date: Thu, 16 Feb 2017 07:15:39 +0100 Subject: [PATCH] cleanup: remove unused stuff --- .../data/update/nvd/UpdateableNvdCve.java | 19 ------------------- .../data/update/nvd/UpdateableNvdCveTest.java | 18 +----------------- 2 files changed, 1 insertion(+), 36 deletions(-) diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/nvd/UpdateableNvdCve.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/nvd/UpdateableNvdCve.java index 6df4e5fa6..08327eeac 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/nvd/UpdateableNvdCve.java +++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/nvd/UpdateableNvdCve.java @@ -25,8 +25,6 @@ import java.util.Map.Entry; import java.util.TreeMap; import org.owasp.dependencycheck.utils.DownloadFailedException; import org.owasp.dependencycheck.utils.Downloader; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; /** * Contains a collection of updateable NvdCveInfo objects. This is used to determine which files need to be downloaded and @@ -36,10 +34,6 @@ import org.slf4j.LoggerFactory; */ public class UpdateableNvdCve implements Iterable, Iterator { - /** - * A reference to the logger. - */ - private static final Logger LOGGER = LoggerFactory.getLogger(UpdateableNvdCve.class); /** * A collection of sources of data. */ @@ -68,19 +62,6 @@ public class UpdateableNvdCve implements Iterable, Iterator