Skip to content

Commit 7c97734

Browse files
update: implement CacheWithRemove interface in DefaultLRUCache class
1 parent 8c96222 commit 7c97734

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core-api/src/main/java/com/optimizely/ab/internal/DefaultLRUCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
import com.optimizely.ab.annotations.VisibleForTesting;
2525

26-
public class DefaultLRUCache<T> implements Cache<T> {
26+
public class DefaultLRUCache<T> implements CacheWithRemove<T> {
2727

2828
private final ReentrantLock lock = new ReentrantLock();
2929

0 commit comments

Comments
 (0)