Skip to content

Commit

Permalink
fix smallrye#2051: add java.lang.Deprecated to IndexInitializer
Browse files Browse the repository at this point in the history
  • Loading branch information
t1 committed Mar 8, 2024
1 parent 0920d08 commit f59867e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import org.jboss.jandex.IndexView;
import org.jboss.jandex.Indexer;

import io.smallrye.graphql.api.Deprecated;
import io.smallrye.graphql.api.Entry;
import io.smallrye.graphql.api.OneOf;
import io.smallrye.graphql.api.federation.Authenticated;
Expand Down Expand Up @@ -103,7 +102,8 @@ private IndexView createCustomIndex() {
// directives from the API module
indexer.index(convertClassToInputStream(Authenticated.class));
indexer.index(convertClassToInputStream(ComposeDirective.class));
indexer.index(convertClassToInputStream(Deprecated.class));
indexer.index(convertClassToInputStream(io.smallrye.graphql.api.Deprecated.class));
indexer.index(convertClassToInputStream(java.lang.Deprecated.class));
indexer.index(convertClassToInputStream(Extends.class));
indexer.index(convertClassToInputStream(External.class));
indexer.index(convertClassToInputStream(FieldSet.class));
Expand Down

0 comments on commit f59867e

Please sign in to comment.