Bug 914278 - Removed check and resulting exception for when endLoading is called without startLoading being called. r=tabraldes

This commit is contained in:
Graham Bleaney 2013-11-21 09:29:52 -05:00
parent 01756ecb9c
commit acdbf5e448

View File

@ -1280,10 +1280,6 @@ Tab.prototype = {
},
endLoading: function endLoading() {
if (!this._loading) {
let stack = new Error().stack;
throw "Not Loading!\n" + stack;
}
this._loading = false;
this.updateFavicon();
},