File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
core/src/main/java/com/google/errorprone/bugpatterns Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 2121import static com .google .errorprone .matchers .Matchers .anyOf ;
2222import static com .google .errorprone .matchers .Matchers .isType ;
2323
24- import com .google .auto .service .AutoService ;
2524import com .google .errorprone .BugPattern ;
2625import com .google .errorprone .BugPattern .LinkType ;
2726import com .google .errorprone .BugPattern .SeverityLevel ;
3736import com .sun .source .tree .Tree ;
3837
3938/** A {@link BugChecker}; see the associated {@link BugPattern} annotation for details. */
40- @ AutoService (BugChecker .class )
4139@ BugPattern (
4240 name = "MissingRefasterAnnotation" ,
4341 summary = "The Refaster template contains a method without any Refaster annotations" ,
4442 linkType = LinkType .NONE ,
4543 severity = SeverityLevel .WARNING ,
4644 tags = StandardTags .LIKELY_ERROR )
4745public final class MissingRefasterAnnotation extends BugChecker implements ClassTreeMatcher {
48- private static final long serialVersionUID = 1L ;
4946 private static final MultiMatcher <Tree , AnnotationTree > HAS_REFASTER_ANNOTATION =
5047 annotations (
5148 AT_LEAST_ONE ,
You can’t perform that action at this time.
0 commit comments