Skip to content

Commit

Permalink
Bug 1217981 - Part 1: Remove for-each from chrome/. r=bsmedberg
Browse files Browse the repository at this point in the history
--HG--
extra : commitid : 6kzkmfyTvnE
extra : rebase_source : a482097f822f1045ffd65c4448fd4229797632e6
  • Loading branch information
arai-a committed Oct 18, 2015
1 parent 52b55c5 commit 1981b6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome/test/unit/head_crtestutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ var Cr = Components.results;
function registerManifests(manifests)
{
var reg = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
for each (var manifest in manifests)
for (var manifest of manifests)
reg.autoRegister(manifest);
}

0 comments on commit 1981b6b

Please sign in to comment.