Skip to content

Commit

Permalink
Remove unnecessary equals from compare based on comments from Pull Re…
Browse files Browse the repository at this point in the history
…quest #229
  • Loading branch information
Michael Hutchinson committed Feb 29, 2012
1 parent cc9f827 commit 747f0f1
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ public String getUri() {
private static class CucumberFeatureUriComparator implements Comparator<CucumberFeature> {
@Override
public int compare(CucumberFeature a, CucumberFeature b) {
if (a.equals(b)) {
return 0;
}
return a.getUri().compareTo(b.getUri());
}
}
Expand Down

0 comments on commit 747f0f1

Please sign in to comment.