Drop hint conversion

This commit is contained in:
Laurențiu Nicola 2022-03-04 08:08:14 +02:00
parent 8454358ba4
commit 9d43291533

View file

@ -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;
}
}