diff --git a/githubdelivery/src/main/java/io/dockstore/githubdelivery/GithubDeliveryS3Client.java b/githubdelivery/src/main/java/io/dockstore/githubdelivery/GithubDeliveryS3Client.java index af1ae084..3a74f3f6 100644 --- a/githubdelivery/src/main/java/io/dockstore/githubdelivery/GithubDeliveryS3Client.java +++ b/githubdelivery/src/main/java/io/dockstore/githubdelivery/GithubDeliveryS3Client.java @@ -182,8 +182,7 @@ private void submitGitHubDeliveryEventsByKey(String key, WorkflowsApi workflowsA String obj = getObject(key); JsonObject jsonObject = GSON.fromJson(obj, JsonObject.class); JsonObject body = jsonObject.get("body").getAsJsonObject(); - String bodyString = body.toString(); //removes the quotes that gets added with the toString method - System.out.println(bodyString); + String bodyString = body.toString(); if ("installation_repositories".equals(jsonObject.get("eventType").getAsString())) { InstallationRepositoriesPayload payload = getGitHubInstallationRepositoriesPayloadByKey(bodyString, key); if (payload != null) {