Skip to content

Commit

Permalink
Made LRUCache private
Browse files Browse the repository at this point in the history
  • Loading branch information
hnaderi committed Jun 21, 2022
1 parent d1ac08d commit 72f399d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/sql-backend/src/main/scala/LRUCache.scala
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ private final class LRUCache[F[_], I, T] private (
}
}

object LRUCache {
private object LRUCache {
final case class CacheItem[I, T](
val key: I,
var value: T,
Expand Down

0 comments on commit 72f399d

Please sign in to comment.