Skip to content

Commit

Permalink
fix(LRUCache): incorrect property initialisation
Browse files Browse the repository at this point in the history
  • Loading branch information
Khaaz committed Feb 20, 2020
1 parent a1de3f4 commit 27d7d9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utility/External/LRUCache.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class LRUCache {
/**
* @type {Node<T>}
*/
this.queue = null;
this.tail = null;

/**
* @type {Collection<T>}
Expand Down

0 comments on commit 27d7d9c

Please sign in to comment.