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

@@ -72,7 +72,7 @@ class ImageSourceEvent extends Event {
* @property {module:ol/source/Source~AttributionLike} [attributions]
* @property {module:ol/extent~Extent} [extent]
* @property {module:ol/proj~ProjectionLike} projection
* @property {Array.<number>} [resolutions]
* @property {Array<number>} [resolutions]
* @property {module:ol/source/State} [state]
*/
@@ -98,7 +98,7 @@ class ImageSource extends Source {
/**
* @private
* @type {Array.<number>}
* @type {Array<number>}
*/
this.resolutions_ = options.resolutions !== undefined ?
options.resolutions : null;
@@ -119,7 +119,7 @@ class ImageSource extends Source {
}
/**
* @return {Array.<number>} Resolutions.
* @return {Array<number>} Resolutions.
* @override
*/
getResolutions() {