From fb29bbffef46dea56516ad48cab0c5e99298dbfc Mon Sep 17 00:00:00 2001 From: Matthew Alsup Date: Thu, 27 Jul 2017 19:52:39 -0500 Subject: [PATCH] benchmark: remove unused parameters Functions completeConfig, completeRun, and updateProgress had unused parameters. These were removed. --- benchmark/_benchmark_progress.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/benchmark/_benchmark_progress.js b/benchmark/_benchmark_progress.js index 0c5cc10bf8d536..ffb2dfdf6511a9 100644 --- a/benchmark/_benchmark_progress.js +++ b/benchmark/_benchmark_progress.js @@ -65,12 +65,12 @@ class BenchmarkProgress { this.updateProgress(); } - completeConfig(data) { + completeConfig() { this.completedConfig++; this.updateProgress(); } - completeRun(job) { + completeRun() { this.completedRuns++; this.updateProgress(); } @@ -108,7 +108,7 @@ class BenchmarkProgress { `${caption} `; } - updateProgress(finished) { + updateProgress() { if (!process.stderr.isTTY || process.stdout.isTTY) { return; }