From bf09235520f3bc96421938feeb90c8b49dd8f128 Mon Sep 17 00:00:00 2001 From: Jules Ivanic Date: Sat, 3 Dec 2022 15:17:35 +0000 Subject: [PATCH] Remove `sealed` from `ScopedCache` abstract class (#112) (Backporting https://github.com/zio/zio-cache/pull/93 to ZIO2 branch) Co-authored-by: Adam Fraser --- zio-cache/shared/src/main/scala/zio/cache/ScopedCache.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zio-cache/shared/src/main/scala/zio/cache/ScopedCache.scala b/zio-cache/shared/src/main/scala/zio/cache/ScopedCache.scala index 3c1c77c..90336a0 100644 --- a/zio-cache/shared/src/main/scala/zio/cache/ScopedCache.scala +++ b/zio-cache/shared/src/main/scala/zio/cache/ScopedCache.scala @@ -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.