Skip to content

Commit

Permalink
ARQ-1556 Warp Inspection methods with multiple qualifiers are execute…
Browse files Browse the repository at this point in the history
…d but incorrectly verified

 - Fix for the bug
  • Loading branch information
kenfinnigan authored and Lukas Fryc committed Oct 29, 2013
1 parent 44c7540 commit ca55ec9
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -62,7 +62,6 @@ public void setQualifiers(List<Annotation> qualifiers) {
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((qualifiers == null) ? 0 : qualifiers.hashCode());
result = prime * result + ((method == null) ? 0 : method.hashCode());
return result;
}
Expand All @@ -79,8 +78,7 @@ public boolean equals(Object obj) {
if (qualifiers == null) {
if (other.qualifiers != null)
return false;
} else if (!qualifiers.equals(other.qualifiers))
return false;
}
if (method == null) {
if (other.method != null)
return false;
Expand Down

0 comments on commit ca55ec9

Please sign in to comment.