From bdeb20f7c9feab72b50da65584478fe6055a083a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 20 Jan 2011 14:20:53 +0100 Subject: [PATCH] open-search-system: Remove unused parameter Remove the 'title' parameter from the OpenSearchSystem constructor, as the prototype's _init() method does not use it. --- js/ui/search.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/search.js b/js/ui/search.js index f7be6af47..24b411ab6 100644 --- a/js/ui/search.js +++ b/js/ui/search.js @@ -224,8 +224,8 @@ SearchProvider.prototype = { }; Signals.addSignalMethods(SearchProvider.prototype); -function OpenSearchSystem(title) { - this._init(title); +function OpenSearchSystem() { + this._init(); } OpenSearchSystem.prototype = {