Skip to content

Commit 451b78e

Browse files
committed
Remove console.log() invocations
Signed-off-by: sheche <sheche@microsoft.com>
1 parent 829902c commit 451b78e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/inlayHintsProvider.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export class JavaInlayHintsProvider implements InlayHintsProvider {
1616
}
1717

1818
public async provideInlayHints(document: TextDocument, range: Range, token: CancellationToken): Promise<InlayHint[]> {
19-
const start = performance.now();
2019
const hints = await commands.executeCommand<InlayHint[]>(Commands.EXECUTE_WORKSPACE_COMMAND,
2120
Commands.JAVA_EDIT_INLAY_HINTS,
2221
document.uri.toString(),
@@ -26,7 +25,6 @@ export class JavaInlayHintsProvider implements InlayHintsProvider {
2625
range.end.character,
2726
token
2827
);
29-
console.log(performance.now() - start);
3028
for (const hint of hints) {
3129
hint.paddingRight = true;
3230
hint.kind = InlayHintKind.Parameter;

0 commit comments

Comments
 (0)