Skip to content

Commit c8ebfbf

Browse files
author
Clay Jensen-Reimann
committed
Fix checkstyle
1 parent 2f5a70e commit c8ebfbf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

elide-graphql/src/main/java/com/yahoo/elide/graphql/GraphQLEndpoint.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@
3939
import javax.ws.rs.core.MediaType;
4040
import javax.ws.rs.core.Response;
4141
import javax.ws.rs.core.SecurityContext;
42-
4342
import java.io.IOException;
44-
import java.util.HashMap;
4543
import java.util.Iterator;
4644
import java.util.Map;
4745
import java.util.function.Function;
@@ -184,7 +182,7 @@ private Response executeGraphQLRequest(
184182
"data", null
185183
);
186184
// Do not commit. Throw OK response to process tx.close correctly.
187-
// (default transaction implementations throw an IOException if you leave a dangling SQL transaction)
185+
// (default implementations throw an IOException if you leave a dangling SQL transaction)
188186
throw new WebApplicationException(
189187
Response.ok(mapper.writeValueAsString(abortedResponseObject)).build());
190188
}

0 commit comments

Comments
 (0)