|
1 | 1 | package performance; |
2 | 2 |
|
3 | | -import benchmark.BenchmarkUtils; |
4 | 3 | import graphql.execution.CoercedVariables; |
5 | 4 | import graphql.language.Document; |
6 | 5 | import graphql.normalized.ExecutableNormalizedField; |
7 | 6 | import graphql.normalized.ExecutableNormalizedOperation; |
8 | 7 | import graphql.normalized.ExecutableNormalizedOperationFactory; |
9 | 8 | import graphql.parser.Parser; |
10 | | -import graphql.schema.*; |
| 9 | +import graphql.schema.DataFetchingFieldSelectionSet; |
| 10 | +import graphql.schema.DataFetchingFieldSelectionSetImpl; |
| 11 | +import graphql.schema.GraphQLOutputType; |
| 12 | +import graphql.schema.GraphQLSchema; |
| 13 | +import graphql.schema.SelectedField; |
11 | 14 | import graphql.schema.idl.SchemaGenerator; |
12 | | -import org.openjdk.jmh.annotations.*; |
| 15 | +import org.openjdk.jmh.annotations.Benchmark; |
| 16 | +import org.openjdk.jmh.annotations.BenchmarkMode; |
| 17 | +import org.openjdk.jmh.annotations.Fork; |
| 18 | +import org.openjdk.jmh.annotations.Measurement; |
| 19 | +import org.openjdk.jmh.annotations.Mode; |
| 20 | +import org.openjdk.jmh.annotations.OutputTimeUnit; |
| 21 | +import org.openjdk.jmh.annotations.Scope; |
| 22 | +import org.openjdk.jmh.annotations.Setup; |
| 23 | +import org.openjdk.jmh.annotations.State; |
| 24 | +import org.openjdk.jmh.annotations.Warmup; |
13 | 25 | import org.openjdk.jmh.infra.Blackhole; |
14 | 26 |
|
15 | 27 | import java.util.List; |
|
0 commit comments