Skip to content

Commit 0cf1e22

Browse files
mnalsupaddaleax
authored andcommitted
benchmark: remove unused parameters
Functions completeConfig, completeRun, and updateProgress had unused parameters. These were removed. PR-URL: #14526 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 37e55bf commit 0cf1e22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

benchmark/_benchmark_progress.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ class BenchmarkProgress {
6565
this.updateProgress();
6666
}
6767

68-
completeConfig(data) {
68+
completeConfig() {
6969
this.completedConfig++;
7070
this.updateProgress();
7171
}
7272

73-
completeRun(job) {
73+
completeRun() {
7474
this.completedRuns++;
7575
this.updateProgress();
7676
}
@@ -108,7 +108,7 @@ class BenchmarkProgress {
108108
`${caption} `;
109109
}
110110

111-
updateProgress(finished) {
111+
updateProgress() {
112112
if (!process.stderr.isTTY || process.stdout.isTTY) {
113113
return;
114114
}

0 commit comments

Comments
 (0)