From afc1a9f077518330452fb585ea3eb811ff495685 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Fri, 18 Sep 2015 06:53:30 -0400 Subject: [PATCH] removed unused settings --- .../owasp/dependencycheck/utils/Settings.java | 24 +++++++------------ 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/dependency-check-utils/src/main/java/org/owasp/dependencycheck/utils/Settings.java b/dependency-check-utils/src/main/java/org/owasp/dependencycheck/utils/Settings.java index fd565ac80..56e7033c0 100644 --- a/dependency-check-utils/src/main/java/org/owasp/dependencycheck/utils/Settings.java +++ b/dependency-check-utils/src/main/java/org/owasp/dependencycheck/utils/Settings.java @@ -185,6 +185,14 @@ public final class Settings { * The properties key for whether the Archive analyzer is enabled. */ public static final String ANALYZER_ARCHIVE_ENABLED = "analyzer.archive.enabled"; + /** + * The properties key for whether the node.js package analyzer is enabled. + */ + public static final String ANALYZER_NODE_PACKAGE_ENABLED = "analyzer.node.package.enabled"; + /** + * The properties key for whether the composer lock file analyzer is enabled. + */ + public static final String ANALYZER_COMPOSER_LOCK_ENABLED = "analyzer.composer.lock.enabled"; /** * The properties key for whether the Python Distribution analyzer is enabled. */ @@ -213,26 +221,10 @@ public final class Settings { * The properties key for whether the .NET Nuspec analyzer is enabled. */ public static final String ANALYZER_NUSPEC_ENABLED = "analyzer.nuspec.enabled"; - /** - * The properties key for whether the JavaScript analyzer is enabled. - */ - public static final String ANALYZER_JAVASCRIPT_ENABLED = "analyzer.javascript.enabled"; /** * The properties key for whether the Nexus analyzer is enabled. */ public static final String ANALYZER_NEXUS_ENABLED = "analyzer.nexus.enabled"; - /** - * The properties key for whether the node.js package analyzer is enabled. - */ - public static final String ANALYZER_NODE_PACKAGE_ENABLED = "analyzer.node.package.enabled"; - /** - * The properties key for whether the composer json file analyzer is enabled. - */ - public static final String ANALYZER_COMPOSER_JSON_ENABLED = "analyzer.composer.json.enabled"; - /** - * The properties key for whether the composer lock file analyzer is enabled. - */ - public static final String ANALYZER_COMPOSER_LOCK_ENABLED = "analyzer.composer.lock.enabled"; /** * The properties key for the Nexus search URL. */