From d444618a1195fe648482eb00398c5abfa2b5b4d5 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Sat, 7 Jul 2012 17:12:59 +0200 Subject: [PATCH] Add missing @template declaration --- src/ol/tilebounds.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ol/tilebounds.js b/src/ol/tilebounds.js index 13d4884ebb..04a77a43fe 100644 --- a/src/ol/tilebounds.js +++ b/src/ol/tilebounds.js @@ -29,6 +29,7 @@ goog.inherits(ol.TileBounds, goog.math.Box); * @param {number} z Z. * @param {function(this: T, ol.TileCoord): boolean} f Callback. * @param {T=} opt_obj The object to be used for the value of 'this' within f. + * @template T */ ol.TileBounds.prototype.forEachTileCoord = function(z, f, opt_obj) { var tileCoord = new ol.TileCoord(z, 0, 0);