Add missing array type in ol.structs.LRUCache#getValues
This commit is contained in:
@@ -162,7 +162,7 @@ ol.structs.LRUCache.prototype.getKeys = function() {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return {Array} Values.
|
* @return {Array.<T>} Values.
|
||||||
*/
|
*/
|
||||||
ol.structs.LRUCache.prototype.getValues = function() {
|
ol.structs.LRUCache.prototype.getValues = function() {
|
||||||
var values = new Array(this.count_);
|
var values = new Array(this.count_);
|
||||||
|
|||||||
Reference in New Issue
Block a user