Skip to content

Commit aab5232

Browse files
committed
Fix compilation.
1 parent cf00371 commit aab5232

File tree

1 file changed

+2
-2
lines changed
  • modules/core/src/main/scala/dev/profunktor/redis4cats/effect

1 file changed

+2
-2
lines changed

modules/core/src/main/scala/dev/profunktor/redis4cats/effect/MkRedis.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
package dev.profunktor.redis4cats.effect
1818

1919
import scala.annotation.implicitNotFound
20-
import scala.annotation.nowarn
2120

2221
import cats.effect.kernel._
2322
import dev.profunktor.redis4cats.connection.{ RedisClient, RedisClusterClient, RedisURI }
@@ -58,9 +57,10 @@ sealed trait MkRedis[F[_]] {
5857
object MkRedis {
5958
def apply[F[_]: MkRedis]: MkRedis[F] = implicitly
6059

61-
@nowarn
6260
implicit def forAsync[F[_]: Async: Log]: MkRedis[F] =
6361
new MkRedis[F] {
62+
private implicit val implicitThis: MkRedis[F] = this
63+
6464
def clientFrom(strUri: => String): Resource[F, RedisClient] =
6565
RedisClient[F].from(strUri)
6666

0 commit comments

Comments
 (0)