Skip to content

Commit

Permalink
Remove sealed from Cache abstract class (#99)
Browse files Browse the repository at this point in the history
Similar PR: #93
  • Loading branch information
guizmaii authored Sep 7, 2022
1 parent 1b44905 commit 75895ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zio-cache/shared/src/main/scala/zio/cache/Cache.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import java.util.concurrent.atomic.{AtomicBoolean, LongAdder}
* the same key the lookup function will only be computed once and the result
* will be returned to all fibers.
*/
sealed abstract class Cache[-Key, +Error, +Value] {
abstract class Cache[-Key, +Error, +Value] {

/**
* Returns statistics for this cache.
Expand Down

0 comments on commit 75895ac

Please sign in to comment.