Skip to content

Commit

Permalink
Remove now-redundant Serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
travisbrown committed May 30, 2020
1 parent 0666997 commit a6dcb17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/cats/syntax/semigroupal.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ trait SemigroupalSyntax {
}
}

abstract class SemigroupalOps[F[_], A] extends Semigroupal.Ops[F, A] with Serializable {
abstract class SemigroupalOps[F[_], A] extends Semigroupal.Ops[F, A] {

@deprecated("Replaced by an apply syntax, e.g. instead of (a |@| b).map(...) use (a, b).mapN(...)", "1.0.0-MF")
final private[syntax] def |@|[B](fb: F[B]): SemigroupalBuilder[F]#SemigroupalBuilder2[A, B] =
Expand Down

0 comments on commit a6dcb17

Please sign in to comment.