checkstyle corrections

Former-commit-id: 8807237a0a38f390298a19507ed55d9df156663f
This commit is contained in:
Jeremy Long
2014-11-05 21:24:34 -05:00
parent 1c51655ce3
commit 0a45048535
3 changed files with 24 additions and 19 deletions

View File

@@ -62,11 +62,11 @@ public class Engine implements Serializable {
/** /**
* A Map of analyzers grouped by Analysis phase. * A Map of analyzers grouped by Analysis phase.
*/ */
private transient final EnumMap<AnalysisPhase, List<Analyzer>> analyzers; private final transient EnumMap<AnalysisPhase, List<Analyzer>> analyzers;
/** /**
* A Map of analyzers grouped by Analysis phase. * A Map of analyzers grouped by Analysis phase.
*/ */
private transient final Set<FileTypeAnalyzer> fileTypeAnalyzers; private final transient Set<FileTypeAnalyzer> fileTypeAnalyzers;
/** /**
* The ClassLoader to use when dynamically loading Analyzer and Update services. * The ClassLoader to use when dynamically loading Analyzer and Update services.
*/ */
@@ -74,7 +74,7 @@ public class Engine implements Serializable {
/** /**
* The Logger for use throughout the class. * The Logger for use throughout the class.
*/ */
private transient static final Logger LOGGER = Logger.getLogger(Engine.class.getName()); private static final transient Logger LOGGER = Logger.getLogger(Engine.class.getName());
/** /**
* Creates a new Engine. * Creates a new Engine.
@@ -174,10 +174,10 @@ public class Engine implements Serializable {
* @since v0.3.2.5 * @since v0.3.2.5
*/ */
public List<Dependency> scan(String[] paths) { public List<Dependency> scan(String[] paths) {
List<Dependency> deps = new ArrayList<Dependency>(); final List<Dependency> deps = new ArrayList<Dependency>();
for (String path : paths) { for (String path : paths) {
final File file = new File(path); final File file = new File(path);
List<Dependency> d = scan(file); final List<Dependency> d = scan(file);
if (d != null) { if (d != null) {
deps.addAll(d); deps.addAll(d);
} }
@@ -207,9 +207,9 @@ public class Engine implements Serializable {
* @since v0.3.2.5 * @since v0.3.2.5
*/ */
public List<Dependency> scan(File[] files) { public List<Dependency> scan(File[] files) {
List<Dependency> deps = new ArrayList<Dependency>(); final List<Dependency> deps = new ArrayList<Dependency>();
for (File file : files) { for (File file : files) {
List<Dependency> d = scan(file); final List<Dependency> d = scan(file);
if (d != null) { if (d != null) {
deps.addAll(d); deps.addAll(d);
} }
@@ -227,9 +227,9 @@ public class Engine implements Serializable {
* @since v0.3.2.5 * @since v0.3.2.5
*/ */
public List<Dependency> scan(Set<File> files) { public List<Dependency> scan(Set<File> files) {
List<Dependency> deps = new ArrayList<Dependency>(); final List<Dependency> deps = new ArrayList<Dependency>();
for (File file : files) { for (File file : files) {
List<Dependency> d = scan(file); final List<Dependency> d = scan(file);
if (d != null) { if (d != null) {
deps.addAll(d); deps.addAll(d);
} }
@@ -247,9 +247,9 @@ public class Engine implements Serializable {
* @since v0.3.2.5 * @since v0.3.2.5
*/ */
public List<Dependency> scan(List<File> files) { public List<Dependency> scan(List<File> files) {
List<Dependency> deps = new ArrayList<Dependency>(); final List<Dependency> deps = new ArrayList<Dependency>();
for (File file : files) { for (File file : files) {
List<Dependency> d = scan(file); final List<Dependency> d = scan(file);
if (d != null) { if (d != null) {
deps.addAll(d); deps.addAll(d);
} }
@@ -272,9 +272,9 @@ public class Engine implements Serializable {
if (file.isDirectory()) { if (file.isDirectory()) {
return scanDirectory(file); return scanDirectory(file);
} else { } else {
Dependency d = scanFile(file); final Dependency d = scanFile(file);
if (d != null) { if (d != null) {
List<Dependency> deps = new ArrayList<Dependency>(); final List<Dependency> deps = new ArrayList<Dependency>();
deps.add(d); deps.add(d);
return deps; return deps;
} }
@@ -286,20 +286,21 @@ public class Engine implements Serializable {
/** /**
* Recursively scans files and directories. Any dependencies identified are added to the dependency collection. * Recursively scans files and directories. Any dependencies identified are added to the dependency collection.
* *
* @param dir the directory to scan. * @param dir the directory to scan
* @return the list of Dependency objects scanned
*/ */
protected List<Dependency> scanDirectory(File dir) { protected List<Dependency> scanDirectory(File dir) {
final File[] files = dir.listFiles(); final File[] files = dir.listFiles();
List<Dependency> deps = new ArrayList<Dependency>(); final List<Dependency> deps = new ArrayList<Dependency>();
if (files != null) { if (files != null) {
for (File f : files) { for (File f : files) {
if (f.isDirectory()) { if (f.isDirectory()) {
List<Dependency> d = scanDirectory(f); final List<Dependency> d = scanDirectory(f);
if (d != null) { if (d != null) {
deps.addAll(d); deps.addAll(d);
} }
} else { } else {
Dependency d = scanFile(f); final Dependency d = scanFile(f);
deps.add(d); deps.add(d);
} }
} }

View File

@@ -403,8 +403,8 @@ public class DependencyBundlingAnalyzer extends AbstractAnalyzer implements Anal
final String leftPath = right.replace('\\', '/'); final String leftPath = right.replace('\\', '/');
final String rightPath = right.replace('\\', '/'); final String rightPath = right.replace('\\', '/');
int leftCount = countChar(leftPath, '/'); final int leftCount = countChar(leftPath, '/');
int rightCount = countChar(rightPath, '/'); final int rightCount = countChar(rightPath, '/');
if (leftCount == rightCount) { if (leftCount == rightCount) {
return leftPath.compareTo(rightPath) <= 0; return leftPath.compareTo(rightPath) <= 0;
} else { } else {

View File

@@ -266,6 +266,10 @@ public class SuppressionRule {
return gav != null; return gav != null;
} }
/**
* A flag indicating whether or not the suppression rule is a core/base rule that should not be included in the
* resulting report in the "suppressed" section.
*/
private boolean base; private boolean base;
/** /**