Returns a representation of a as an instance of type B. @return the converted value; is null if and only if a is null
(@Nullable A a)
| 169 | */ |
| 170 | |
| 171 | @Nullable |
| 172 | @CanIgnoreReturnValue |
| 173 | public final B convert(@Nullable A a) { |
| 174 | return correctedDoForward(a); |
| 175 | } |
| 176 | |
| 177 | @Nullable |
| 178 | B correctedDoForward(@Nullable A a) { |
no test coverage detected