Skip to content

Commit 65f1034

Browse files
authored
Update LRU.java
Trailing whitespace
1 parent 8b47db4 commit 65f1034

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/dataStructures/lruCache

1 file changed

+1
-1
lines changed

src/main/java/dataStructures/lruCache/LRU.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public int get(int key) {
6060
if (!keyToNode.containsKey(key)) {
6161
return -1;
6262
}
63-
63+
6464
doublyLinkedList temp = keyToNode.get(key);
6565
temp.prev.next = temp.next;
6666
temp.next.prev = temp.prev;

0 commit comments

Comments
 (0)