154155156157158159160161
public Collection<? extends Component> duplicatesFound() { ComponentLookupException error = notFoundError.get(); if (error == null) { return emptyList(); } return error.found(); } }
136137138139140141142143
* {@code ComponentMatcher}. */ public Collection<? extends Component> duplicatesFound() { ComponentLookupException error = notFoundError.get(); if (error == null) return emptyList(); return error.found(); } }