AutoconfAnalyzer: Some 'diff' whitespace fixes.

Former-commit-id: 98b756d97d38068550a416eb1df0c7fa2e217504
This commit is contained in:
Dale Visser
2015-06-03 15:05:13 -04:00
parent 7d3ac21e42
commit 771fd77088
3 changed files with 10 additions and 10 deletions

View File

@@ -333,10 +333,10 @@ public final class CliParser {
final Option disablePythonPackageAnalyzer = OptionBuilder.withLongOpt(ARGUMENT.DISABLE_PY_PKG) final Option disablePythonPackageAnalyzer = OptionBuilder.withLongOpt(ARGUMENT.DISABLE_PY_PKG)
.withDescription("Disable the Python Package Analyzer.").create(); .withDescription("Disable the Python Package Analyzer.").create();
final Option disableAutoconfAnalyzer = OptionBuilder final Option disableAutoconfAnalyzer = OptionBuilder
.withLongOpt(ARGUMENT.DISABLE_AUTOCONF) .withLongOpt(ARGUMENT.DISABLE_AUTOCONF)
.withDescription("Disable the Autoconf Analyzer.").create(); .withDescription("Disable the Autoconf Analyzer.").create();
final Option disableCentralAnalyzer = OptionBuilder.withLongOpt(ARGUMENT.DISABLE_CENTRAL) 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 " .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. * Returns true if the disableAutoconf command line argument was specified.
* *
* @return true if the disableAutoconf command line argument was specified; otherwise false * @return true if the disableAutoconf command line argument was specified; otherwise false
*/ */
public boolean isAutoconfDisabled() { public boolean isAutoconfDisabled() {
return (line != null) && line.hasOption(ARGUMENT.DISABLE_AUTOCONF); return (line != null) && line.hasOption(ARGUMENT.DISABLE_AUTOCONF);
} }
/** /**
* Returns true if the disableNexus command line argument was specified. * Returns true if the disableNexus command line argument was specified.
* *
@@ -810,7 +810,7 @@ public final class CliParser {
*/ */
public static class ARGUMENT { public static class ARGUMENT {
/** /**
* The long CLI argument name specifying the directory/file to scan. * The long CLI argument name specifying the directory/file to scan.
*/ */
public static final String SCAN = "scan"; public static final String SCAN = "scan";
@@ -1010,4 +1010,4 @@ public final class CliParser {
*/ */
public static final String EXCLUDE = "exclude"; public static final String EXCLUDE = "exclude";
} }
} }

View File

@@ -127,7 +127,7 @@ public class AutoconfAnalyzerTest extends BaseTest {
/** /**
* Test whether expected evidence is gathered from GNU Binutil's configure. * Test whether expected evidence is gathered from GNU Binutil's configure.
* *
* @throws AnalysisException * @throws AnalysisException
* is thrown when an exception occurs. * is thrown when an exception occurs.
*/ */

View File

@@ -187,7 +187,7 @@ public final class Settings {
/** /**
* The properties key for whether the Autoconf analyzer is enabled. * 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. * The properties key for whether the .NET Assembly analyzer is enabled.
*/ */