Fix the project equals methods issue

This commit is contained in:
wdliu
2015-10-09 00:14:39 +08:00
parent fc214055a6
commit 314514b895

View File

@@ -264,7 +264,7 @@ public class Project {
return false;
}
} else if (!this.project.equals(other.project)) {
if(this.project.getTechnicalLabel().equals(project.getTechnicalLabel()))
if(this.project.getTechnicalLabel().equals(other.project.getTechnicalLabel()))
return true;
return false;
}