Skip to content

Commit ce8be32

Browse files
authored
Remove sealed from ManagedCache abstract class. (#93)
It prevents us to use it
1 parent b14c308 commit ce8be32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zio-cache/shared/src/main/scala/zio/cache/ManagedCache.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import java.util
99
import java.util.concurrent.atomic.{AtomicBoolean, AtomicInteger, LongAdder}
1010
import scala.jdk.CollectionConverters._
1111

12-
sealed abstract class ManagedCache[-Key, +Error, +Value] {
12+
abstract class ManagedCache[-Key, +Error, +Value] {
1313

1414
/**
1515
* Returns statistics for this cache.

0 commit comments

Comments
 (0)