Skip to content

Commit

Permalink
fixed conversions for scala 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolanrensen committed Mar 25, 2024
1 parent 4e5438b commit 723152b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ fun <A> Iterable<A>.asScalaSeq(): ScalaImmutableSeq<A> =
//#if scalaCompat >= 2.13
scala.jdk.javaapi.CollectionConverters.asScala<A>(this).toSeq()
//#else
//$scala.collection.JavaConverters.iterableAsScalaIterable<A>(this).toSeq()
//$scala.collection.immutable.`Seq$`.`MODULE$`.apply<A>(scala.collection.JavaConverters.iterableAsScalaIterable<A>(this).toSeq()) as ScalaImmutableSeq<A>
//#endif

//#if scalaCompat >= 2.13
Expand Down

0 comments on commit 723152b

Please sign in to comment.