Assign function instead of calling it

This commit is contained in:
Frederic Junod
2013-09-18 16:45:48 +02:00
parent 0e4c5d10c5
commit 42f7288d73

View File

@@ -111,9 +111,7 @@ ol.source.Tile.prototype.findLoadedTiles = function(loadedTilesByZ,
* @return {string} Key.
* @protected
*/
ol.source.Tile.prototype.getKeyZXY = function(z, x, y) {
return ol.TileCoord.getKeyZXY(z, x, y);
};
ol.source.Tile.prototype.getKeyZXY = ol.TileCoord.getKeyZXY;
/**