Skip to content

Commit

Permalink
fix implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
massimosiani committed Feb 23, 2024
1 parent efe55f8 commit 3c5f94f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private[cats] object scalaVersionSpecific {
)(implicit w1: A => TraversableLike[El1, Repr1], w2: T => IterableLike[El2, Repr2]) = (a, that).zipped
}

implicit class setExtension[A](private val a: A) extends AnyVal {
def asScala(s: java.util.Set[A]): mutable.Set[A] = `set asScala`(s)
implicit class setExtension[A](private val s: java.util.Set[A]) extends AnyVal {
def asScala: mutable.Set[A] = `set asScala`(s)
}
}

0 comments on commit 3c5f94f

Please sign in to comment.