Merge pull request #21153 from Snuffleupagus/rm-MIN_INT_32

Remove the unused `MIN_INT_32` constant (PR 21139 follow-up)
This commit is contained in:
Jonas Jenwald 2026-04-24 15:01:16 +02:00 committed by GitHub
commit 476626eb49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,7 +29,6 @@ import { BaseStream } from "./base_stream.js";
const PDF_VERSION_REGEXP = /^[1-9]\.\d$/;
const MAX_INT_32 = 2 ** 31 - 1;
const MIN_INT_32 = -(2 ** 31);
const IDENTITY_MATRIX = [1, 0, 0, 1, 0, 0];
@ -768,7 +767,6 @@ export {
lookupNormalRect,
lookupRect,
MAX_INT_32,
MIN_INT_32,
MissingDataException,
numberToString,
ParserEOFException,