From 771fd77088408c50f565c7580c38e64bdc4b53a5 Mon Sep 17 00:00:00 2001 From: Dale Visser Date: Wed, 3 Jun 2015 15:05:13 -0400 Subject: [PATCH] AutoconfAnalyzer: Some 'diff' whitespace fixes. Former-commit-id: 98b756d97d38068550a416eb1df0c7fa2e217504 --- .../org/owasp/dependencycheck/CliParser.java | 16 ++++++++-------- .../analyzer/AutoconfAnalyzerTest.java | 2 +- .../owasp/dependencycheck/utils/Settings.java | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/dependency-check-cli/src/main/java/org/owasp/dependencycheck/CliParser.java b/dependency-check-cli/src/main/java/org/owasp/dependencycheck/CliParser.java index 920b30f5b..cac69a6f2 100644 --- a/dependency-check-cli/src/main/java/org/owasp/dependencycheck/CliParser.java +++ b/dependency-check-cli/src/main/java/org/owasp/dependencycheck/CliParser.java @@ -333,10 +333,10 @@ public final class CliParser { final Option disablePythonPackageAnalyzer = OptionBuilder.withLongOpt(ARGUMENT.DISABLE_PY_PKG) .withDescription("Disable the Python Package Analyzer.").create(); - - final Option disableAutoconfAnalyzer = OptionBuilder - .withLongOpt(ARGUMENT.DISABLE_AUTOCONF) - .withDescription("Disable the Autoconf Analyzer.").create(); + + final Option disableAutoconfAnalyzer = OptionBuilder + .withLongOpt(ARGUMENT.DISABLE_AUTOCONF) + .withDescription("Disable the Autoconf Analyzer.").create(); final Option disableCentralAnalyzer = OptionBuilder.withLongOpt(ARGUMENT.DISABLE_CENTRAL) .withDescription("Disable the Central Analyzer. If this analyzer is disabled it is likely you also want to disable " @@ -493,13 +493,13 @@ public final class CliParser { /** * Returns true if the disableAutoconf command line argument was specified. - * + * * @return true if the disableAutoconf command line argument was specified; otherwise false */ public boolean isAutoconfDisabled() { return (line != null) && line.hasOption(ARGUMENT.DISABLE_AUTOCONF); } - + /** * Returns true if the disableNexus command line argument was specified. * @@ -810,7 +810,7 @@ public final class CliParser { */ public static class ARGUMENT { - /** + /** * The long CLI argument name specifying the directory/file to scan. */ public static final String SCAN = "scan"; @@ -1010,4 +1010,4 @@ public final class CliParser { */ public static final String EXCLUDE = "exclude"; } -} \ No newline at end of file +} diff --git a/dependency-check-core/src/test/java/org/owasp/dependencycheck/analyzer/AutoconfAnalyzerTest.java b/dependency-check-core/src/test/java/org/owasp/dependencycheck/analyzer/AutoconfAnalyzerTest.java index 0d50a2bb6..6e118e41a 100644 --- a/dependency-check-core/src/test/java/org/owasp/dependencycheck/analyzer/AutoconfAnalyzerTest.java +++ b/dependency-check-core/src/test/java/org/owasp/dependencycheck/analyzer/AutoconfAnalyzerTest.java @@ -127,7 +127,7 @@ public class AutoconfAnalyzerTest extends BaseTest { /** * Test whether expected evidence is gathered from GNU Binutil's configure. - * + * * @throws AnalysisException * is thrown when an exception occurs. */ 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 7899d0633..b57cb0a8f 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 @@ -187,7 +187,7 @@ public final class Settings { /** * The properties key for whether the Autoconf analyzer is enabled. */ - public static final String ANALYZER_AUTOCONF_ENABLED = "analyzer.autoconf.enabled"; + public static final String ANALYZER_AUTOCONF_ENABLED = "analyzer.autoconf.enabled"; /** * The properties key for whether the .NET Assembly analyzer is enabled. */