Skip to content

Commit

Permalink
build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Sep 20, 2024
1 parent 880b986 commit 55e8578
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,7 @@ import pekko.util.ccompat.JavaConverters._
private[javadsl] object CollectionUtil {
def toSeq[T](jlist: java.util.List[T]): immutable.Seq[T] =
jlist.asScala.toList

def toSeq[T](jiterable: java.lang.Iterable[T]): immutable.Seq[T] =
jiterable.asScala.toList
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,7 @@ import pekko.util.ccompat.JavaConverters._
private[javadsl] object CollectionUtil {
def toSeq[T](jlist: java.util.List[T]): immutable.Seq[T] =
jlist.asScala.toSeq

def toSeq[T](jiterable: java.lang.Iterable[T]): immutable.Seq[T] =
jiterable.asScala.toSeq
}

0 comments on commit 55e8578

Please sign in to comment.