MCPcopy Create free account
hub / github.com/antlr/codebuff / correctedDoForward

Method correctedDoForward

output/java_guava/1.4.13/Converter.java:178–186  ·  view source on GitHub ↗
(@Nullable A a)

Source from the content-addressed store, hash-verified

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

Callers 3

convertMethod · 0.95
correctedDoBackwardMethod · 0.45
correctedDoForwardMethod · 0.45

Calls 2

doForwardMethod · 0.95
checkNotNullMethod · 0.45

Tested by

no test coverage detected