From b266f1ba9c6d30a5501e1f0039e4a48603f27b79 Mon Sep 17 00:00:00 2001 From: Andy Scott Date: Sun, 30 Apr 2017 11:31:40 -0700 Subject: [PATCH] Unseal InjectK to allow for extension by other libraries --- core/src/main/scala/cats/InjectK.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/cats/InjectK.scala b/core/src/main/scala/cats/InjectK.scala index b2c76b99058..596bb7d0d9f 100644 --- a/core/src/main/scala/cats/InjectK.scala +++ b/core/src/main/scala/cats/InjectK.scala @@ -9,7 +9,7 @@ import cats.data.EitherK * * @see [[http://www.staff.science.uu.nl/~swier004/publications/2008-jfp.pdf]] */ -sealed abstract class InjectK[F[_], G[_]] { +abstract class InjectK[F[_], G[_]] { def inj: FunctionK[F, G] def prj: FunctionK[G, λ[α => Option[F[α]]]]