From 2dfbd7d9f0f7a81f040dfb7179835df9b0c3d980 Mon Sep 17 00:00:00 2001 From: Mike Bifulco Date: Sat, 18 Feb 2017 11:53:20 -0500 Subject: [PATCH] remove unused matchWholeWords parameter --- lib/SearchQueue.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/SearchQueue.js b/lib/SearchQueue.js index 78c4a0e..383a4dd 100644 --- a/lib/SearchQueue.js +++ b/lib/SearchQueue.js @@ -144,6 +144,6 @@ SearchQueue.prototype = { } }; -exports.init = function(esc, reqPath, resPath, matchWholeWords, cleanupInterval) { - new SearchQueue(esc, fbutil.fbRef(reqPath), fbutil.fbRef(resPath), matchWholeWords, cleanupInterval); +exports.init = function(esc, reqPath, resPath, cleanupInterval) { + new SearchQueue(esc, fbutil.fbRef(reqPath), fbutil.fbRef(resPath), cleanupInterval); };