Skip to content

Commit d2470d1

Browse files
committed
Remove unused local var
1 parent c8410ff commit d2470d1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/features/codeLensProvider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export default class OmniSharpCodeLensProvider extends AbstractSupport implement
3232
};
3333

3434
provideCodeLenses(document: TextDocument, token: CancellationToken): CodeLens[] | Thenable<CodeLens[]> {
35-
let request = { Filename: document.fileName };
3635
return serverUtils.currentFileMembersAsTree(this._server, { Filename: document.fileName }, token).then(tree => {
3736
let ret: CodeLens[] = [];
3837
tree.TopLevelTypeDefinitions.forEach(node => this._convertQuickFix(ret, document.fileName, node));

0 commit comments

Comments
 (0)