Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
massimosiani committed Jan 31, 2025
1 parent 17209a4 commit 15861a7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ package laws
import cats.kernel.compat.scalaVersionSpecific.*
import cats.kernel.instances.currency.*
import cats.kernel.laws.discipline.*
import cats.kernel.laws.scalaVersionSpecific.*
import munit.DisciplineSuite
import java.util.Currency
import org.scalacheck.{Arbitrary, Cogen, Gen}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ private[cats] object scalaVersionSpecific {
}

implicit class setExtension[A](private val s: java.util.Set[A]) extends AnyVal {
def asScala: Iterable[A] = CollectionConverters.asScala(x)
def asScala: Iterable[A] = CollectionConverters.asScala(s)
}
}

0 comments on commit 15861a7

Please sign in to comment.