Skip to content

Commit 442c6ce

Browse files
committed
Add equals() to the unit test to satisfy checkstyle
1 parent 17b325e commit 442c6ce

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/test/java/io/reactivex/internal/util/OpenHashSetTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ public int hashCode() {
2525
return 1;
2626
}
2727

28+
@Override
29+
public boolean equals(Object o) {
30+
return this == o;
31+
}
2832
}
2933

3034
@Test

0 commit comments

Comments
 (0)