Bug 1217983 - Remove for-each from b2g/. r=fabrice

This commit is contained in:
Tooru Fujisawa 2015-10-19 00:11:49 +09:00
parent 70b678194c
commit 9081f56f3e

View File

@ -431,7 +431,7 @@ UpdatePrompt.prototype = {
sendUpdateEvent: function UP_sendUpdateEvent(aType, aUpdate) {
let detail = {};
for each (let property in this._copyProperties) {
for (let property of this._copyProperties) {
detail[property] = aUpdate[property];
}