Searched refs:suppressedWarnings (Results 1 – 2 of 2) sorted by relevance
98 SuppressWarnings suppressedWarnings = method.getAnnotation(SuppressWarnings.class); in validateMethod() local99 if (suppressedWarnings == null in validateMethod()100 || !ImmutableSet.copyOf(suppressedWarnings.value()) in validateMethod()
241 public static ImmutableSet<String> suppressedWarnings(Element element) { in suppressedWarnings() method in DaggerElements242 SuppressWarnings suppressedWarnings = element.getAnnotation(SuppressWarnings.class); in suppressedWarnings() local243 if (suppressedWarnings == null) { in suppressedWarnings()246 return ImmutableSet.copyOf(suppressedWarnings.value()); in suppressedWarnings()