Skip to content

Commit

Permalink
Remove star imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartisk committed Jan 30, 2024
1 parent b1ae2b2 commit 3a821bb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
import static java.util.stream.Collectors.toList;
import static org.jboss.jandex.AnnotationValue.Kind.ARRAY;

import java.util.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.jboss.jandex.AnnotationInstance;
import org.jboss.jandex.AnnotationValue;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package io.smallrye.graphql.api.federation.policy;

import static io.smallrye.graphql.api.DirectiveLocation.*;
import static io.smallrye.graphql.api.DirectiveLocation.ENUM;
import static io.smallrye.graphql.api.DirectiveLocation.FIELD_DEFINITION;
import static io.smallrye.graphql.api.DirectiveLocation.INTERFACE;
import static io.smallrye.graphql.api.DirectiveLocation.OBJECT;
import static io.smallrye.graphql.api.DirectiveLocation.SCALAR;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
Expand Down

0 comments on commit 3a821bb

Please sign in to comment.