Rename non-api sub-namespace typedefs

This commit is contained in:
Peter Robins
2016-05-13 09:58:25 +00:00
parent 4626554a18
commit 176ddd3403
36 changed files with 315 additions and 324 deletions

View File

@@ -22,19 +22,19 @@ ol.structs.LRUCache = function() {
/**
* @private
* @type {!Object.<string, ol.structs.LRUCacheEntry>}
* @type {!Object.<string, ol.LRUCacheEntry>}
*/
this.entries_ = {};
/**
* @private
* @type {?ol.structs.LRUCacheEntry}
* @type {?ol.LRUCacheEntry}
*/
this.oldest_ = null;
/**
* @private
* @type {?ol.structs.LRUCacheEntry}
* @type {?ol.LRUCacheEntry}
*/
this.newest_ = null;