CI fail fixed.

This commit is contained in:
peng-yongsheng 2018-02-09 10:20:31 +08:00
parent 425324ee46
commit 59c512fb2b
1 changed files with 1 additions and 2 deletions

View File

@ -110,8 +110,7 @@ public class GraphQLHandler extends JettyHandler {
JsonObject requestJson = gson.fromJson(request, JsonObject.class);
Type mapType = new TypeToken<Map<String, Object>>() {
}.getType();
Type mapType = new TypeToken<Map<String, Object>>() { }.getType();
return execute(requestJson.get(QUERY).getAsString(), gson.fromJson(requestJson.get(VARIABLES), mapType));
}