Skip to content

Commit

Permalink
Remove sealed from ManagedCache abstract class. (#93)
Browse files Browse the repository at this point in the history
It prevents us to use it
  • Loading branch information
guizmaii authored Jul 19, 2022
1 parent b14c308 commit ce8be32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import java.util
import java.util.concurrent.atomic.{AtomicBoolean, AtomicInteger, LongAdder}
import scala.jdk.CollectionConverters._

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

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

0 comments on commit ce8be32

Please sign in to comment.