Skip to content

Commit bf09235

Browse files
Remove sealed from ScopedCache abstract class (#112)
(Backporting #93 to ZIO2 branch) Co-authored-by: Adam Fraser <[email protected]>
1 parent 5c77e78 commit bf09235

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

11-
sealed abstract class ScopedCache[-Key, +Error, +Value] {
11+
abstract class ScopedCache[-Key, +Error, +Value] {
1212

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

0 commit comments

Comments
 (0)