Skip to content

Commit

Permalink
Checkstyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andriy-dmytruk committed Nov 17, 2023
1 parent 1d17a35 commit 9ce68d2
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,13 @@
import java.io.IOException;
import java.io.Writer;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Optional;
import java.util.Properties;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;

/**
Expand Down Expand Up @@ -118,7 +116,6 @@ public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment
for (Element e : element) {
final String t = resolveClientType(e);
List<String> clientNames = resolveClientClassNames(e);
System.out.println("Clients resolved 2: " + clientNames);
final boolean isRxJava2 = t.equals("RXJAVA2");
final boolean isReactor = t.equals("REACTOR");
final boolean isAsync = t.equals("ASYNC");
Expand Down Expand Up @@ -526,7 +523,6 @@ private Optional<AnnotationMirror> resolveSdkClientsAnnotation(Element e) {
final List<? extends AnnotationMirror> annotationMirrors = e.getAnnotationMirrors();
for (AnnotationMirror annotationMirror : annotationMirrors) {
TypeElement te = (TypeElement) annotationMirror.getAnnotationType().asElement();
System.out.println("Name: " + te.getSimpleName().toString());
if (te.getSimpleName().toString().equals("SdkClients")) {
return Optional.of(annotationMirror);
}
Expand Down

0 comments on commit 9ce68d2

Please sign in to comment.