Skip to content

Commit 75895ac

Browse files
authored
Remove sealed from Cache abstract class (#99)
Similar PR: #93
1 parent 1b44905 commit 75895ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import java.util.concurrent.atomic.{AtomicBoolean, LongAdder}
2525
* the same key the lookup function will only be computed once and the result
2626
* will be returned to all fibers.
2727
*/
28-
sealed abstract class Cache[-Key, +Error, +Value] {
28+
abstract class Cache[-Key, +Error, +Value] {
2929

3030
/**
3131
* Returns statistics for this cache.

0 commit comments

Comments
 (0)