Skip to content

Commit

Permalink
Remove obsolete TODO comments
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 598880027
  • Loading branch information
stefanhaustein authored and Google Java Core Libraries committed Jan 16, 2024
1 parent bc85d07 commit a5200a3
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public class BooleansTest extends TestCase {

private static final boolean[] VALUES = {false, true};

@J2ktIncompatible // TODO(b/285538920): Fix and enable.
public void testHashCode() {
assertThat(Booleans.hashCode(true)).isEqualTo(Boolean.TRUE.hashCode());
assertThat(Booleans.hashCode(false)).isEqualTo(Boolean.FALSE.hashCode());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ public void testDivideByZeroThrows() {
}
}

@J2ktIncompatible // TODO(b/285538920): Wrong result for j2kt
public void testMod() {
for (long a : TEST_LONGS) {
for (long b : TEST_LONGS) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public class BooleansTest extends TestCase {

private static final boolean[] VALUES = {false, true};

@J2ktIncompatible // TODO(b/285538920): Fix and enable.
public void testHashCode() {
assertThat(Booleans.hashCode(true)).isEqualTo(Boolean.TRUE.hashCode());
assertThat(Booleans.hashCode(false)).isEqualTo(Boolean.FALSE.hashCode());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ public void testDivideByZeroThrows() {
}
}

@J2ktIncompatible // TODO(b/285538920): Wrong result for j2kt
public void testMod() {
for (long a : TEST_LONGS) {
for (long b : TEST_LONGS) {
Expand Down

0 comments on commit a5200a3

Please sign in to comment.