From 1e8d7d5840cd4e87198aad5f4ef0b8efcaf69aca Mon Sep 17 00:00:00 2001 From: Winston Li Date: Mon, 17 Nov 2014 12:31:51 +0000 Subject: [PATCH] Removed printing of push data. --- .../src/uk/ac/ic/wlgitbridge/writelatex/WriteLatexAPI.java | 1 - 1 file changed, 1 deletion(-) diff --git a/services/git-bridge/src/uk/ac/ic/wlgitbridge/writelatex/WriteLatexAPI.java b/services/git-bridge/src/uk/ac/ic/wlgitbridge/writelatex/WriteLatexAPI.java index 193507f80d..7557aa6a43 100644 --- a/services/git-bridge/src/uk/ac/ic/wlgitbridge/writelatex/WriteLatexAPI.java +++ b/services/git-bridge/src/uk/ac/ic/wlgitbridge/writelatex/WriteLatexAPI.java @@ -53,7 +53,6 @@ public class WriteLatexAPI implements WriteLatexDataSource { public void putDirectoryContentsToProjectWithName(String projectName, RawDirectoryContents directoryContents, String hostname) throws SnapshotPostException, IOException, FailedConnectionException { System.out.println("Pushing project: " + projectName); CandidateSnapshot candidate = dataModel.createCandidateSnapshotFromProjectWithContents(projectName, directoryContents, hostname); - System.out.println(candidate.getJsonRepresentation()); SnapshotPushRequest snapshotPushRequest = new SnapshotPushRequest(candidate); snapshotPushRequest.request(); SnapshotPushRequestResult result = snapshotPushRequest.getResult();