(TypeLiteral<?> type)
| 183 | } |
| 184 | |
| 185 | public Errors atInjectRequired(TypeLiteral<?> type) { |
| 186 | return addMessage( |
| 187 | new Message( |
| 188 | GuiceInternal.GUICE_INTERNAL, |
| 189 | ErrorId.MISSING_CONSTRUCTOR, |
| 190 | new MissingConstructorError(type, /* atInjectRequired= */ true, getSources()))); |
| 191 | } |
| 192 | |
| 193 | public Errors converterReturnedNull( |
| 194 | String stringValue, |
no test coverage detected