(@Nullable A a)
| 198 | } |
| 199 | |
| 200 | @Nullable B correctedDoForward(@Nullable A a) { |
| 201 | if (handleNullAutomatically) { |
| 202 | // TODO(kevinb): we shouldn't be checking for a null result at runtime. Assert? |
| 203 | return a == null ? null : checkNotNull(doForward(a)); |
| 204 | } else { |
| 205 | return unsafeDoForward(a); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | @Nullable A correctedDoBackward(@Nullable B b) { |
| 210 | if (handleNullAutomatically) { |
no test coverage detected