(@Nullable A a)
| 175 | } |
| 176 | |
| 177 | @Nullable |
| 178 | B correctedDoForward(@Nullable A a) { |
| 179 | if (handleNullAutomatically) { |
| 180 | // TODO(kevinb): we shouldn't be checking for a null result at runtime. Assert? |
| 181 | return a == null ? null : checkNotNull(doForward(a)); |
| 182 | } else { |
| 183 | return doForward(a); |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | @Nullable |
| 188 | A correctedDoBackward(@Nullable B b) { |
no test coverage detected