From 3692918ed7cbeab7255b2f009fff9e5b844d2778 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Wed, 6 Feb 2013 12:50:34 +0100 Subject: [PATCH] Remove unnecessary undercores, thanks @fredj --- src/ol/structs/lrucache.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ol/structs/lrucache.js b/src/ol/structs/lrucache.js index a67df961b8..ecf53521a6 100644 --- a/src/ol/structs/lrucache.js +++ b/src/ol/structs/lrucache.js @@ -21,19 +21,19 @@ ol.structs.LRUCache = function() { /** * @private - * @type {Object.} + * @type {Object.} */ this.entries_ = {}; /** * @private - * @type {?ol.structs.LRUCacheEntry_} + * @type {?ol.structs.LRUCacheEntry} */ this.oldest_ = null; /** * @private - * @type {?ol.structs.LRUCacheEntry_} + * @type {?ol.structs.LRUCacheEntry} */ this.newest_ = null; @@ -244,8 +244,8 @@ ol.structs.LRUCache.prototype.set = function(key, value) { /** * @typedef {{key_: string, - * newer: ol.structs.LRUCacheEntry_, - * older: ol.structs.LRUCacheEntry_, + * newer: ol.structs.LRUCacheEntry, + * older: ol.structs.LRUCacheEntry, * value_: *}} */ -ol.structs.LRUCacheEntry_; +ol.structs.LRUCacheEntry;