mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Fixed cast.
This commit is contained in:
parent
4ec7d70eff
commit
01f59e3f4e
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue