vscode extension cleanup: migrate to prefer-const tslint rule

This commit is contained in:
Veetaha 2020-02-02 21:12:59 +02:00
parent d06e02dd13
commit 420462421d
6 changed files with 11 additions and 10 deletions

View file

@ -20,7 +20,7 @@ export class Ctx {
}
async restartServer() {
let old = this.client;
const old = this.client;
if (old) {
await old.stop();
}