From cc77fdd89fb5633ded9e953048b51d60bc7da24b Mon Sep 17 00:00:00 2001 From: Winston Li Date: Thu, 4 Dec 2014 18:39:21 +0000 Subject: [PATCH] Print statement --- .../uk/ac/ic/wlgitbridge/writelatex/filestore/node/BlobNode.java | 1 + 1 file changed, 1 insertion(+) diff --git a/services/git-bridge/src/uk/ac/ic/wlgitbridge/writelatex/filestore/node/BlobNode.java b/services/git-bridge/src/uk/ac/ic/wlgitbridge/writelatex/filestore/node/BlobNode.java index adb019c703..9797cc86ca 100644 --- a/services/git-bridge/src/uk/ac/ic/wlgitbridge/writelatex/filestore/node/BlobNode.java +++ b/services/git-bridge/src/uk/ac/ic/wlgitbridge/writelatex/filestore/node/BlobNode.java @@ -41,6 +41,7 @@ public class BlobNode extends FileNode { return false; } BlobNode that = (BlobNode) obj; + System.out.println("that: " + that + ", blob: " + blob + ", that.blob: " + that.blob); return super.equals(that) && blob.equals(that.blob); }