Skip to content

Commit

Permalink
[lint] Add underscores to unused parameters in Backend (#1266)
Browse files Browse the repository at this point in the history
This commit adds underscores to unused parameters in Backend.

ONE-vscode-DCO-1.0-Signed-off-by: Dayoung Lee <[email protected]>
  • Loading branch information
dayo09 authored Sep 14, 2022
1 parent 37a5e43 commit 15d8826
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Backend/Compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ class CompilerBase implements Compiler {
throw Error('Invalid getToolchainTypes call');
}

getToolchains(toolchainType: string, start: number, count: number): Toolchains {
getToolchains(_toolchainType: string, _start: number, _count: number): Toolchains {
throw Error('Invalid getToolchains call');
}

getInstalledToolchains(toolchainType: string): Toolchains {
getInstalledToolchains(_toolchainType: string): Toolchains {
throw Error('Invalid getInstalledToolchains call');
}

Expand Down

0 comments on commit 15d8826

Please sign in to comment.