(Class<? extends Annotation> annotationType)
| 372 | } |
| 373 | |
| 374 | private static void ensureRetainedAtRuntime(Class<? extends Annotation> annotationType) { |
| 375 | checkArgument( |
| 376 | Annotations.isRetainedAtRuntime(annotationType), |
| 377 | "%s is not retained at runtime. Please annotate it with @Retention(RUNTIME).", |
| 378 | annotationType.getName()); |
| 379 | } |
| 380 | |
| 381 | private static void ensureIsBindingAnnotation(Class<? extends Annotation> annotationType) { |
| 382 | checkArgument( |
no test coverage detected