Rename _ol_structs_LRUCache_ to LRUCache

This commit is contained in:
Frederic Junod
2017-12-17 09:00:48 +01:00
parent ed79ec9b2e
commit e887b5012b
5 changed files with 36 additions and 36 deletions

View File

@@ -2,7 +2,7 @@
* @module ol/TileCache
*/
import {inherits} from './index.js';
import _ol_structs_LRUCache_ from './structs/LRUCache.js';
import LRUCache from './structs/LRUCache.js';
import _ol_tilecoord_ from './tilecoord.js';
/**
@@ -13,11 +13,11 @@ import _ol_tilecoord_ from './tilecoord.js';
*/
var _ol_TileCache_ = function(opt_highWaterMark) {
_ol_structs_LRUCache_.call(this, opt_highWaterMark);
LRUCache.call(this, opt_highWaterMark);
};
inherits(_ol_TileCache_, _ol_structs_LRUCache_);
inherits(_ol_TileCache_, LRUCache);
/**