Bug 849764 - Replace removeObserver() calls with three params with two in testing dir. r=mak

This commit is contained in:
Xin Zhang 2013-04-06 14:46:35 -04:00
Родитель a8e6ef988a
Коммит 48b62b800b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -95,7 +95,7 @@ SpecialPowersObserver.prototype = new SpecialPowersObserverAPI();
SpecialPowersObserver.prototype.uninit = function()
{
var obs = Services.obs;
obs.removeObserver(this, "chrome-document-global-created", false);
obs.removeObserver(this, "chrome-document-global-created");
this._removeProcessCrashObservers();
};