(
ScopeBinding existing, Class<? extends Annotation> annotationType, Scope scope)
| 365 | } |
| 366 | |
| 367 | public Errors duplicateScopes( |
| 368 | ScopeBinding existing, Class<? extends Annotation> annotationType, Scope scope) { |
| 369 | return addMessage( |
| 370 | ErrorId.DUPLICATE_SCOPES, |
| 371 | "Scope %s is already bound to %s at %s.\n Cannot bind %s.", |
| 372 | existing.getScope(), |
| 373 | annotationType, |
| 374 | existing.getSource(), |
| 375 | scope); |
| 376 | } |
| 377 | |
| 378 | public Errors voidProviderMethod() { |
| 379 | return addMessage( |
no test coverage detected