From a0a6089057c417df52c2b3036590ca0aca62471b Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Sat, 18 May 2013 08:45:58 -0400 Subject: [PATCH] checkstyle fix Former-commit-id: 67cdcf9f745f7220d02b84ac5e918ef65e324b30 --- .../org/owasp/dependencycheck/dependency/Dependency.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/owasp/dependencycheck/dependency/Dependency.java b/src/main/java/org/owasp/dependencycheck/dependency/Dependency.java index 4f809d7c6..b5aac6f89 100644 --- a/src/main/java/org/owasp/dependencycheck/dependency/Dependency.java +++ b/src/main/java/org/owasp/dependencycheck/dependency/Dependency.java @@ -527,7 +527,8 @@ public class Dependency implements Comparable { if (this.versionEvidence != other.versionEvidence && (this.versionEvidence == null || !this.versionEvidence.equals(other.versionEvidence))) { return false; } - if (this.analysisExceptions != other.analysisExceptions && (this.analysisExceptions == null || !this.analysisExceptions.equals(other.analysisExceptions))) { + if (this.analysisExceptions != other.analysisExceptions + && (this.analysisExceptions == null || !this.analysisExceptions.equals(other.analysisExceptions))) { return false; } if ((this.description == null) ? (other.description != null) : !this.description.equals(other.description)) { @@ -539,7 +540,8 @@ public class Dependency implements Comparable { if (this.vulnerabilities != other.vulnerabilities && (this.vulnerabilities == null || !this.vulnerabilities.equals(other.vulnerabilities))) { return false; } - if (this.relatedDependencies != other.relatedDependencies && (this.relatedDependencies == null || !this.relatedDependencies.equals(other.relatedDependencies))) { + if (this.relatedDependencies != other.relatedDependencies + && (this.relatedDependencies == null || !this.relatedDependencies.equals(other.relatedDependencies))) { return false; } return true;