Skip to content

Commit

Permalink
[lint] Remove unused variables from Toolchain (#1267)
Browse files Browse the repository at this point in the history
This commit removes unused variables and parameters from Toochain.

ONE-vscode-DCO-1.0-Signed-off-by: Dayoung Lee <[email protected]>
  • Loading branch information
dayo09 authored Sep 14, 2022
1 parent 00d72f2 commit 37a5e43
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion src/Backend/Toolchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Toolchain {
installed(): Command {
throw Error('Invalid installed call');
}
run(cfg: string): Command {
run(_cfg: string): Command {
throw Error('Invalid run call');
}
}
Expand Down
1 change: 0 additions & 1 deletion src/Toolchain/DefaultToolchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import * as vscode from 'vscode';

import {Toolchain} from '../Backend/Toolchain';
import {Logger} from '../Utils/Logger';
import {ToolchainEnv} from './ToolchainEnv';

class DefaultToolchain {
Expand Down
2 changes: 0 additions & 2 deletions src/Toolchain/ToolchainEnv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ import {Toolchain} from '../Backend/Toolchain';
import {BuilderJob} from '../Job/BuilderJob';
import {Job} from '../Job/Job';
import {WorkFlow} from '../Job/WorkFlow';
import {Balloon} from '../Utils/Balloon';
import * as helpers from '../Utils/Helpers';
import {Logger} from '../Utils/Logger';
import {showPasswordQuickInput} from '../View/PasswordQuickInput';

Expand Down

0 comments on commit 37a5e43

Please sign in to comment.