(@Nullable A a)
| 167 | } |
| 168 | |
| 169 | @Nullable |
| 170 | B correctedDoForward(@Nullable A a) { |
| 171 | if (handleNullAutomatically) { |
| 172 | // TODO(kevinb): we shouldn't be checking for a null result at runtime. Assert? |
| 173 | return a == null ? null : checkNotNull(doForward(a)); |
| 174 | } else { |
| 175 | return doForward(a); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | @Nullable |
| 180 | A correctedDoBackward(@Nullable B b) { |
no test coverage detected