Removed debugging try/catch
This commit is contained in:
parent
0f0674daf6
commit
62dd7c3dbc
@ -3817,7 +3817,6 @@ export function extractLZOP(bytes, offset) {
|
||||
// Move past checksum.
|
||||
stream.moveForwardsBy(4);
|
||||
|
||||
try {
|
||||
while (stream.hasMore()) {
|
||||
const uncompSize = stream.readInt(4, "be");
|
||||
|
||||
@ -3832,8 +3831,6 @@ export function extractLZOP(bytes, offset) {
|
||||
// skip forwards by compressed data size and the size of the checksum(s).
|
||||
stream.moveForwardsBy(compSize + (numCheckSumSkip * 4));
|
||||
}
|
||||
} catch (error) {
|
||||
}
|
||||
return stream.carve();
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user