From a65892670406fe0fc1b3da4cf81594760e691602 Mon Sep 17 00:00:00 2001 From: Miodec Date: Sat, 3 Jan 2026 22:23:58 +0100 Subject: [PATCH] unused --- frontend/src/ts/utils/caret.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frontend/src/ts/utils/caret.ts b/frontend/src/ts/utils/caret.ts index 1d297e91e..8bfaade09 100644 --- a/frontend/src/ts/utils/caret.ts +++ b/frontend/src/ts/utils/caret.ts @@ -41,16 +41,13 @@ export class Caret { private marginTopAnimation: JSAnimation | null = null; private marginLeftAnimation: JSAnimation | null = null; - metadata: Record = {}; - - constructor(element: ElementWithUtils, style: CaretStyle, metadata = {}) { + constructor(element: ElementWithUtils, style: CaretStyle) { this.id = element.native.id; this.element = element; this.setStyle(style); if (this.id === "caret") { this.isMainCaret = true; } - this.metadata = metadata; } public getElement(): ElementWithUtils {