Skip to content

Commit 46a0647

Browse files
committed
Removed unnecessary method
1 parent 2fe8134 commit 46a0647

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/test/java/graphql/annotations/processor/util/CustomRelay.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
package graphql.annotations.processor.util;
1616

1717
import graphql.relay.Relay;
18-
import graphql.schema.*;
18+
import graphql.schema.GraphQLFieldDefinition;
19+
import graphql.schema.GraphQLList;
20+
import graphql.schema.GraphQLNonNull;
21+
import graphql.schema.GraphQLObjectType;
1922

2023
import java.util.List;
2124

@@ -73,9 +76,4 @@ public GraphQLObjectType connectionType(String name, GraphQLObjectType edgeType,
7376
.fields(connectionFields)
7477
.build();
7578
}
76-
77-
@Override
78-
public GraphQLObjectType edgeType(String name, GraphQLOutputType nodeType, GraphQLInterfaceType nodeInterface, List<GraphQLFieldDefinition> edgeFields) {
79-
return null;
80-
}
8179
}

0 commit comments

Comments
 (0)