From cae15a8d7aa32a88e477b7a1d42256b13bcb4e17 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Wed, 8 Jul 2015 06:32:20 -0400 Subject: [PATCH] updated javadoc Former-commit-id: 264561aed2a9e138d97c4f06c5e27df5b8acf7e9 --- .../org/owasp/dependencycheck/data/update/CpeUpdater.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/CpeUpdater.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/CpeUpdater.java index 386b5afdd..637a4f2d9 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/CpeUpdater.java +++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/CpeUpdater.java @@ -26,7 +26,6 @@ import java.net.MalformedURLException; import java.net.URL; import java.util.Date; import java.util.List; -import java.util.logging.Level; import java.util.zip.GZIPInputStream; import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParser; @@ -45,6 +44,9 @@ import org.slf4j.LoggerFactory; import org.xml.sax.SAXException; /** + * The CpeUpdater is designed to download the CPE data file from NIST and import the data into the database. However, as this + * currently adds no beneficial data, compared to what is in the CPE data contained in the CVE data files, this class is not + * currently used. The code is being kept as a future update may utilize more data from the CPE xml files. * * @author Jeremy Long */