Remove lint

This commit is contained in:
Tim Schaub
2018-07-18 10:35:54 -06:00
parent 71555002a8
commit b8c9125602
20 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -246,7 +246,7 @@ class LRUCache extends EventTarget {
* @param {T} value Value.
*/
replace(key, value) {
this.get(key); // update `newest_`
this.get(key); // update `newest_`
this.entries_[key].value_ = value;
}