Update DiskCache.java
This commit is contained in:
parent
f460657753
commit
ca95c606bb
@ -128,8 +128,9 @@ public class DiskCache implements URLsDiskHandler, URLsWriter {
|
|||||||
if (blockOffset + blockLength > meta.getSize()) {
|
if (blockOffset + blockLength > meta.getSize()) {
|
||||||
throw new IllegalStateException("Overflowed data size");
|
throw new IllegalStateException("Overflowed data size");
|
||||||
}
|
}
|
||||||
} else if (data.length != BLOCK_SIZE) {
|
} else {
|
||||||
throw new IllegalStateException("Block data length != block length");
|
// Intermediate blocks must be of max size
|
||||||
|
assert data.length == BLOCK_SIZE;
|
||||||
}
|
}
|
||||||
return new DataBlock(blockOffset, blockLength, ByteBuffer.wrap(data, 0, blockLength));
|
return new DataBlock(blockOffset, blockLength, ByteBuffer.wrap(data, 0, blockLength));
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user