Skip to content

Commit

Permalink
updated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jdereg committed Jun 23, 2024
1 parent 355fd81 commit 4a9cddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/cedarsoftware/util/LRUCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
*/
public class LRUCache<K, V> extends AbstractMap<K, V> implements Map<K, V> {
private static final ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor();
private static final long DELAY = 10; // 1 second delay
private static final long DELAY = 10; // 10ms delay
private final int capacity;
private final ConcurrentHashMap<K, Node<K, V>> cache;
private volatile boolean cleanupScheduled = false;
Expand Down

0 comments on commit 4a9cddd

Please sign in to comment.