open-search-system: Remove unused parameter

Remove the 'title' parameter from the OpenSearchSystem constructor,
as the prototype's _init() method does not use it.
This commit is contained in:
Florian Müllner 2011-01-20 14:20:53 +01:00
parent 1dd35b7d08
commit bdeb20f7c9

View File

@ -224,8 +224,8 @@ SearchProvider.prototype = {
};
Signals.addSignalMethods(SearchProvider.prototype);
function OpenSearchSystem(title) {
this._init(title);
function OpenSearchSystem() {
this._init();
}
OpenSearchSystem.prototype = {