From 9d432915330e5b67fc39de673d954966dffce7b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Fri, 4 Mar 2022 08:08:14 +0200 Subject: [PATCH] Drop hint conversion --- editors/code/src/inlay_hints.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index ff16ef3049..441370a677 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts @@ -27,9 +27,6 @@ export function activateInlayHints(ctx: Ctx) { if (hints == null) { return []; } else { - for (let hint of hints) { - hint.position = new vscode.Position(hint.position.line, hint.position.character); - } return hints; } }