From 2309863d646faeb8051c646fc3574a4fe5991131 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 29 May 2025 13:25:31 +0300 Subject: [PATCH] refactor(ckeditor5): remove unused method --- packages/ckeditor5/src/plugins/syntax_highlighting/index.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/ckeditor5/src/plugins/syntax_highlighting/index.ts b/packages/ckeditor5/src/plugins/syntax_highlighting/index.ts index ef6430331..18c5fae9c 100644 --- a/packages/ckeditor5/src/plugins/syntax_highlighting/index.ts +++ b/packages/ckeditor5/src/plugins/syntax_highlighting/index.ts @@ -359,11 +359,6 @@ if (debugLevel >= debugLevels.indexOf("warn")) { warn = console.warn.bind(console, tag + ": "); } -let info = function (...args: unknown[]) {}; -if (debugLevel >= debugLevels.indexOf("info")) { - info = console.info.bind(console, tag + ": "); -} - let log = function (...args: unknown[]) {}; if (debugLevel >= debugLevels.indexOf("log")) { log = console.log.bind(console, tag + ": ");