(Key<?> key)
| 175 | } |
| 176 | |
| 177 | public Errors jitDisabledInParent(Key<?> key) { |
| 178 | return addMessage( |
| 179 | ErrorId.JIT_DISABLED_IN_PARENT, |
| 180 | "Explicit bindings are required and %s would be bound in a parent injector.\n" |
| 181 | + "Please add an explicit binding for it, either in the child or the parent.", |
| 182 | key); |
| 183 | } |
| 184 | |
| 185 | public Errors atInjectRequired(TypeLiteral<?> type) { |
| 186 | return addMessage( |
no test coverage detected