mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-23 01:29:43 +01:00
checkstyle fix
Former-commit-id: 67cdcf9f745f7220d02b84ac5e918ef65e324b30
This commit is contained in:
@@ -527,7 +527,8 @@ public class Dependency implements Comparable<Dependency> {
|
|||||||
if (this.versionEvidence != other.versionEvidence && (this.versionEvidence == null || !this.versionEvidence.equals(other.versionEvidence))) {
|
if (this.versionEvidence != other.versionEvidence && (this.versionEvidence == null || !this.versionEvidence.equals(other.versionEvidence))) {
|
||||||
return false;
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
if ((this.description == null) ? (other.description != null) : !this.description.equals(other.description)) {
|
if ((this.description == null) ? (other.description != null) : !this.description.equals(other.description)) {
|
||||||
@@ -539,7 +540,8 @@ public class Dependency implements Comparable<Dependency> {
|
|||||||
if (this.vulnerabilities != other.vulnerabilities && (this.vulnerabilities == null || !this.vulnerabilities.equals(other.vulnerabilities))) {
|
if (this.vulnerabilities != other.vulnerabilities && (this.vulnerabilities == null || !this.vulnerabilities.equals(other.vulnerabilities))) {
|
||||||
return false;
|
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 false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Reference in New Issue
Block a user