Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorphisixersai <phisixersai@gmail.com>2017-07-15 16:16:42 +0300
committerMyles Borins <mylesborins@google.com>2017-09-12 04:16:56 +0300
commitb0f4539ce578b2d50e8f08eece51748fbe20a2eb (patch)
tree5a06039678a55182f08e97b0ac22ffdfc79617eb /tools
parent0dc9d284a447d5a4a69f06566fe85a674118f3d9 (diff)
tools: delete an unused argument
PR-URL: https://github.com/nodejs/node/pull/14251 Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/jslint.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/jslint.js b/tools/jslint.js
index 245a5c570b7..a8f4d498ed5 100644
--- a/tools/jslint.js
+++ b/tools/jslint.js
@@ -120,7 +120,7 @@ if (cluster.isMaster) {
if (showProgress) {
// Start the progress display update timer when the first worker is ready
- cluster.once('online', function(worker) {
+ cluster.once('online', function() {
startTime = process.hrtime();
setInterval(printProgress, 1000).unref();
printProgress();