Print statement

This commit is contained in:
Winston Li 2014-12-04 18:39:21 +00:00
parent 358abb4503
commit cc77fdd89f

View file

@ -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);
}