Fixed cast.

This commit is contained in:
Winston Li 2014-12-04 19:23:28 +00:00
parent 4ec7d70eff
commit 01f59e3f4e

View file

@ -18,7 +18,7 @@ public abstract class Blob implements PersistentStoreUpdater<AttachmentNode> {
if (!(obj instanceof Blob)) {
return false;
}
ByteBlob that = (ByteBlob) obj;
Blob that = (Blob) obj;
try {
return Arrays.equals(getContents(), that.getContents());
} catch (FailedConnectionException e) {