From dd7cb733374f05d881077dd70bb3a8430a10fb79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa=20Aubert?= Date: Fri, 31 Mar 2017 14:34:24 +0200 Subject: [PATCH] Remove unused dependency --- batch/job_queue.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/batch/job_queue.js b/batch/job_queue.js index 4b38f504..7f373ac3 100644 --- a/batch/job_queue.js +++ b/batch/job_queue.js @@ -2,10 +2,9 @@ var debug = require('./util/debug')('queue'); -function JobQueue(metadataBackend, jobPublisher, queueIndex) { +function JobQueue(metadataBackend, jobPublisher) { this.metadataBackend = metadataBackend; this.jobPublisher = jobPublisher; - this.queueIndex = queueIndex; } module.exports = JobQueue;