Add missing array type in ol.structs.LRUCache#getValues

This commit is contained in:
Frederic Junod
2014-08-27 09:25:41 +02:00
parent 25093b371d
commit 1a4580f6f8

View File

@@ -162,7 +162,7 @@ ol.structs.LRUCache.prototype.getKeys = function() {
/**
* @return {Array} Values.
* @return {Array.<T>} Values.
*/
ol.structs.LRUCache.prototype.getValues = function() {
var values = new Array(this.count_);