diff --git a/web/app_options.js b/web/app_options.js index 7940d9786..001fa72dd 100644 --- a/web/app_options.js +++ b/web/app_options.js @@ -475,8 +475,7 @@ if (typeof PDFJSDev === "undefined" || PDFJSDev.test("GENERIC")) { const userOptions = new Map(); if (typeof PDFJSDev === "undefined" || PDFJSDev.test("GENERIC")) { - // Apply any compatibility-values to the user-options, - // see also `AppOptions.remove` below. + // Apply any compatibility-values to the user-options. for (const [name, value] of compatParams) { userOptions.set(name, value); } @@ -611,17 +610,6 @@ class AppOptions { } } } - - static remove(name) { - userOptions.delete(name); - - if (typeof PDFJSDev === "undefined" || PDFJSDev.test("GENERIC")) { - // Re-apply a compatibility-value, if it exists, to the user-options. - if (compatParams.has(name)) { - userOptions.set(name, compatParams.get(name)); - } - } - } } if (typeof PDFJSDev === "undefined" || PDFJSDev.test("GENERIC")) {