Skip to content

Commit 7c40f77

Browse files
committed
Fix
1 parent 54d174e commit 7c40f77

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/com/thealgorithms/datastructures/caches

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/datastructures/caches/MRUCache.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,10 @@ static final class Entry<I, J> {
185185
private I key;
186186
private J value;
187187

188-
public Entry() {
188+
Entry() {
189189
}
190190

191-
public Entry(Entry<I, J> preEntry, Entry<I, J> nextEntry, I key, J value) {
191+
Entry(Entry<I, J> preEntry, Entry<I, J> nextEntry, I key, J value) {
192192
this.preEntry = preEntry;
193193
this.nextEntry = nextEntry;
194194
this.key = key;

0 commit comments

Comments
 (0)