Bug 543672 - Warning: setting a property that has only a getter in fuelApplication.js' Utilities.free (r=dao)

This commit is contained in:
Dietrich Ayala 2010-02-03 10:26:55 -08:00
parent 7f162b9ae0
commit cac24f0445

View File

@ -86,11 +86,11 @@ var Utilities = {
},
free : function() {
this.bookmarks = null;
this.livemarks = null;
this.annotations = null;
this.history = null;
this.windowMediator = null;
delete this.bookmarks;
delete this.livemarks
delete this.annotations;
delete this.history;
delete this.windowMediator;
}
};