Skip to content

Commit ae01842

Browse files
cpovirkGoogle Java Core Libraries
authored andcommitted
Remove obsolete suppressions from b/122617528.
RELNOTES=n/a PiperOrigin-RevId: 780676181
1 parent 7d6452c commit ae01842

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -394,25 +394,21 @@ public void reactToNullParameters(@Nullable Object first, @Nullable Object secon
394394
}
395395

396396
/** Two-arg method with no Nullable params. */
397-
@SuppressWarnings("GoodTime") // false positive; b/122617528
398397
public void normalNormal(String first, Integer second) {
399398
reactToNullParameters(first, second);
400399
}
401400

402401
/** Two-arg method with the second param Nullable. */
403-
@SuppressWarnings("GoodTime") // false positive; b/122617528
404402
public void normalNullable(String first, @Nullable Integer second) {
405403
reactToNullParameters(first, second);
406404
}
407405

408406
/** Two-arg method with the first param Nullable. */
409-
@SuppressWarnings("GoodTime") // false positive; b/122617528
410407
public void nullableNormal(@Nullable String first, Integer second) {
411408
reactToNullParameters(first, second);
412409
}
413410

414411
/** Two-arg method with the both params Nullable. */
415-
@SuppressWarnings("GoodTime") // false positive; b/122617528
416412
public void nullableNullable(@Nullable String first, @Nullable Integer second) {
417413
reactToNullParameters(first, second);
418414
}

0 commit comments

Comments
 (0)