Commit 710d7f3
committed
fix(bigtable): resolve NullArgumentForNonNullParameter error in MaybePointWriteCallableTest
Fixes #14174
Replace redundant Truth assertThat((Object) future.get()).isNull() on ApiFuture<Void>
with direct future.get() to avoid ErrorProne NullArgumentForNonNullParameter false-positives
under GraalVM / JDK 21 CI. Also assert returned future in multipleEntries_fallsThroughToClassic
to satisfy FutureReturnValueIgnored.1 parent 0d5fac0 commit 710d7f3
1 file changed
Lines changed: 3 additions & 2 deletions
File tree
- java-bigtable/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/stub/mutaterows
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| |||
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
73 | | - | |
| 73 | + | |
74 | 74 | | |
| 75 | + | |
75 | 76 | | |
76 | 77 | | |
77 | 78 | | |
| |||
0 commit comments