Skip to content

Commit f267e9d

Browse files
committed
Revert import auto-format.
1 parent 90dee30 commit f267e9d

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

src/test/java/performance/DFSelectionSetPerformance.java

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
11
package performance;
22

3-
import benchmark.BenchmarkUtils;
43
import graphql.execution.CoercedVariables;
54
import graphql.language.Document;
65
import graphql.normalized.ExecutableNormalizedField;
76
import graphql.normalized.ExecutableNormalizedOperation;
87
import graphql.normalized.ExecutableNormalizedOperationFactory;
98
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;
1114
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;
1325
import org.openjdk.jmh.infra.Blackhole;
1426

1527
import java.util.List;

0 commit comments

Comments
 (0)