Skip to content

Commit

Permalink
Revert "Merge pull request #14 from SonamChugh13/revert-13-sonam"
Browse files Browse the repository at this point in the history
This reverts commit 9ada8a5, reversing
changes made to 56a96d1.
  • Loading branch information
SonamChugh13 committed Feb 14, 2024
1 parent 9ada8a5 commit 9499101
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,14 @@ public boolean equals(Object o) {
return toString().equals(o.toString());
}

@Override
public int hashCode() {
final int primeNumber = 31;
int result = 1;
result = result * primeNumber + (startTime == null ? 0 : startTime.hashCode());
return result;
}

@NonNull
@Override
public String toString() {
Expand Down

0 comments on commit 9499101

Please sign in to comment.