Skip to content

Commit

Permalink
Backwards
Browse files Browse the repository at this point in the history
  • Loading branch information
nik9000 committed Jun 1, 2018
1 parent 7339b26 commit 2ae7c27
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -995,8 +995,8 @@ public String toString() {
}

@Override
public int compareTo(DeadNodeAndRevival lhs) {
return Long.compare(nanosUntilRevival, lhs.nanosUntilRevival);
public int compareTo(DeadNodeAndRevival rhs) {
return Long.compare(rhs.nanosUntilRevival, nanosUntilRevival);
}
}

Expand Down

0 comments on commit 2ae7c27

Please sign in to comment.