Returns the set of annotations on the scope that are themselves annotated with CanReleaseReferences. These annotations are used as metadata for dagger.releasablereferences.TypedReleasableReferenceManager.
()
| 113 | * dagger.releasablereferences.TypedReleasableReferenceManager}. |
| 114 | */ |
| 115 | public final ImmutableSet<AnnotationMirror> releasableReferencesMetadata() { |
| 116 | return ImmutableSet.copyOf( |
| 117 | getAnnotatedAnnotations(scopeAnnotationElement(), CanReleaseReferences.class)); |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Returns the {@linkplain #releasableReferencesMetadata() releasable references metadata} |
no test coverage detected