Remove use of goog.array.forEach

This commit is contained in:
Frederic Junod
2015-09-24 11:03:39 +02:00
parent cd152cca14
commit 496cece074
22 changed files with 68 additions and 89 deletions

View File

@@ -29,7 +29,7 @@ describe('ol.rendering.layer.Tile', function() {
}
};
goog.array.forEach(sources, function(source) {
sources.forEach(function(source) {
source.on('tileloadstart', function(event) {
tilesLoading++;
});
@@ -190,7 +190,6 @@ describe('ol.rendering.layer.Tile', function() {
});
goog.require('goog.array');
goog.require('goog.object');
goog.require('ol.proj');
goog.require('ol.Map');