Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
[FIXED JENKINS-15250]: Don't use raw data when comparing warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Sep 25, 2012
1 parent 96b6424 commit d6eae84
Showing 1 changed file with 2 additions and 12 deletions.
Expand Up @@ -491,20 +491,10 @@ else if (!lineRanges.equals(other.lineRanges)) {
else if (!message.toString().equals(other.message.toString())) {
return false;
}
if (moduleName == null) {
if (other.moduleName != null) {
return false;
}
}
else if (!moduleName.toString().equals(other.moduleName.toString())) {
if (!getModuleName().equals(other.getModuleName())) {
return false;
}
if (packageName == null) {
if (other.packageName != null) {
return false;
}
}
else if (!packageName.toString().equals(other.packageName.toString())) {
if (!getPackageName().equals(other.getPackageName())) {
return false;
}
if (primaryLineNumber != other.primaryLineNumber) {
Expand Down

0 comments on commit d6eae84

Please sign in to comment.