(Class<? extends Annotation> annotationType)
| 65 | } |
| 66 | |
| 67 | @Override |
| 68 | public boolean isAnnotationPresent(Class<? extends Annotation> annotationType) { |
| 69 | return getAnnotation(annotationType) != null; |
| 70 | } |
| 71 | |
| 72 | @Override |
| 73 | @Nullable |
nothing calls this directly
no test coverage detected