Skip to content

Commit

Permalink
удалил лишний метод
Browse files Browse the repository at this point in the history
  • Loading branch information
ergashev committed Dec 23, 2016
1 parent 0cb70aa commit cd492a6
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

Expand Down Expand Up @@ -56,13 +54,6 @@ public SourceVersion getSupportedSourceVersion() {
return SourceVersion.latestSupported();
}

@Override
public Set<String> getSupportedAnnotationTypes() {
Set<String> set = new HashSet<>();
set.add(CustomView.class.getCanonicalName());
return Collections.unmodifiableSet(set);
}

@Override
public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
for (Element element : roundEnv.getElementsAnnotatedWith(CustomView.class)) {
Expand Down

0 comments on commit cd492a6

Please sign in to comment.