Bug 581309 - Remove unused properties from XPCOMUtils; r=sayrer

This commit is contained in:
neil@parkwaycc.co.uk 2010-11-01 09:59:00 -04:00
parent 3ae884f005
commit c104ce1676

View File

@ -146,18 +146,6 @@ var XPCOMUtils = {
}
},
get _appID() {
try {
let appInfo = Cc["@mozilla.org/xre/app-info;1"].
getService(Ci.nsIXULAppInfo);
delete this._appID;
return this._appID = appInfo.ID;
}
catch(ex) {
return undefined;
}
},
/**
* Defines a getter on a specified object that will be created upon first use.
*