()
| 103 | // BindingGraph.scopesRequiringReleasableReferenceManagers() to see if a given binding graph |
| 104 | // actually binds a ReleasableReferenceManager for this scope. |
| 105 | public final boolean canReleaseReferences() { |
| 106 | return isAnnotationPresent(scopeAnnotationElement(), CanReleaseReferences.class) |
| 107 | || !releasableReferencesMetadata().isEmpty(); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Returns the set of annotations on the scope that are themselves annotated with {@link |
no test coverage detected