Skip to content

Commit

Permalink
Merge pull request #3792 from joroKr21/from-emptyk
Browse files Browse the repository at this point in the history
Revert implicitness of Empty.fromEmptyK
  • Loading branch information
larsrh authored Feb 14, 2021
2 parents d7fd885 + 1c87f87 commit 3e09e3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alleycats-core/src/main/scala/alleycats/Empty.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object Empty extends EmptyInstances0 {
def apply[A](a: => A): Empty[A] =
new Empty[A] { lazy val empty: A = a }

implicit def fromEmptyK[F[_], T](implicit ekf: EmptyK[F]): Empty[F[T]] = ekf.synthesize[T]
def fromEmptyK[F[_], T](implicit ekf: EmptyK[F]): Empty[F[T]] = ekf.synthesize[T]

/* ======================================================================== */
/* THE FOLLOWING CODE IS MANAGED BY SIMULACRUM; PLEASE DO NOT EDIT!!!! */
Expand Down

0 comments on commit 3e09e3a

Please sign in to comment.