Use Array<Foo> instead of Array.<Foo>

This commit is contained in:
Tim Schaub
2018-07-25 18:32:43 -07:00
parent 5a6502572f
commit d12ef20b12
184 changed files with 1194 additions and 1194 deletions

View File

@@ -75,7 +75,7 @@ class VectorImageTile extends Tile {
/**
* Keys of source tiles used by this tile. Use with {@link #getTile}.
* @type {Array.<string>}
* @type {Array<string>}
*/
this.tileKeys = [];
@@ -95,12 +95,12 @@ class VectorImageTile extends Tile {
this.wrappedTileCoord = urlTileCoord;
/**
* @type {Array.<module:ol/events~EventsKey>}
* @type {Array<module:ol/events~EventsKey>}
*/
this.loadListenerKeys_ = [];
/**
* @type {Array.<module:ol/events~EventsKey>}
* @type {Array<module:ol/events~EventsKey>}
*/
this.sourceTileListenerKeys_ = [];