Skip to content

Commit

Permalink
Fix issue tracking when comparing only hash of line
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Brandhof committed Jul 9, 2015
1 parent 98d7550 commit a5f41ef
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -261,7 +261,7 @@ public boolean equals(@Nonnull Object o) {
if (this == o) { if (this == o) {
return true; return true;
} }
LineAndLineHashKey that = (LineAndLineHashKey) o; LineHashKey that = (LineHashKey) o;
// start with most discriminant field // start with most discriminant field
return lineHash.equals(that.lineHash) return lineHash.equals(that.lineHash)
&& ruleKey.equals(that.ruleKey); && ruleKey.equals(that.ruleKey);
Expand Down

0 comments on commit a5f41ef

Please sign in to comment.