Skip to content

Commit

Permalink
Remove sealed from ScopedCache abstract class (#112)
Browse files Browse the repository at this point in the history
(Backporting #93 to ZIO2 branch)

Co-authored-by: Adam Fraser <[email protected]>
  • Loading branch information
guizmaii and adamgfraser authored Dec 3, 2022
1 parent 5c77e78 commit bf09235
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import java.util
import java.util.concurrent.atomic.{AtomicBoolean, AtomicInteger, LongAdder}
import scala.jdk.CollectionConverters._

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

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

0 comments on commit bf09235

Please sign in to comment.