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

Method correctedDoForward

output/java_guava/1.4.19/Converter.java:177–185  ·  view source on GitHub ↗
(@Nullable A a)

Source from the content-addressed store, hash-verified

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) {

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