mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-30 20:31:34 +02:00
Fixed cast.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user