From 92ec10bfcad11fea430c5bda6e4b104b1653d57f Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Tue, 6 Apr 2021 13:07:38 +0200 Subject: [PATCH] Remove the deprecated `PDFLinkService.navigateTo`-method (PR 12440 follow-up) This method has been deprecated in two releases now, hence we shouldn't need to keep this code around. --- web/pdf_link_service.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/web/pdf_link_service.js b/web/pdf_link_service.js index a8a393e75..29d6d2daa 100644 --- a/web/pdf_link_service.js +++ b/web/pdf_link_service.js @@ -107,16 +107,6 @@ class PDFLinkService { this.pdfViewer.pagesRotation = value; } - /** - * @deprecated - */ - navigateTo(dest) { - console.error( - "Deprecated method: `navigateTo`, use `goToDestination` instead." - ); - this.goToDestination(dest); - } - /** * @private */