From 821db5c0d54d11a2ffe52d94d814804fe20d1b55 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Fri, 2 May 2025 10:12:04 +0200 Subject: [PATCH] tracker: code style --- tracker/tracker/src/main/modules/constructedStyleSheets.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/tracker/tracker/src/main/modules/constructedStyleSheets.ts b/tracker/tracker/src/main/modules/constructedStyleSheets.ts index 21e949dee..32bfab683 100644 --- a/tracker/tracker/src/main/modules/constructedStyleSheets.ts +++ b/tracker/tracker/src/main/modules/constructedStyleSheets.ts @@ -127,7 +127,6 @@ export default function (app: App | null) { return replace.call(this, text).then((sheet: CSSStyleSheet) => { const sheetID = styleSheetIDMap.get(this) if (sheetID) { - console.log('replace') app.send(AdoptedSSReplaceURLBased(sheetID, text, app.getBaseHref())) } return sheet @@ -137,7 +136,6 @@ export default function (app: App | null) { context.CSSStyleSheet.prototype.replaceSync = function (text: string) { const sheetID = styleSheetIDMap.get(this) if (sheetID) { - console.log('replaceSync') app.send(AdoptedSSReplaceURLBased(sheetID, text, app.getBaseHref())) } return replaceSync.call(this, text)