Skip to content

Commit

Permalink
Updated from collectionAsScalaIterableConverter to collectionAsScalaI…
Browse files Browse the repository at this point in the history
…terableConverter since the old one is deprecated. (#1297)
  • Loading branch information
Tim-Linschoten authored Aug 1, 2022
1 parent 0857cff commit 1895800
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class InteractionExecutorJava(implementations: java.util.List[InteractionInstanc
val executionContext: ExecutionContext)
extends InteractionExecutor {
@nowarn
private lazy val javaInteractions = JavaConverters.collectionAsScalaIterable(implementations).toList
private lazy val javaInteractions = JavaConverters.collectionAsScalaIterableConverter(implementations).asScala.toList
def interactions: List[InteractionInstance] = javaInteractions

def list: String = interactionsCodec(CurrentInteractions).noSpaces
Expand Down

0 comments on commit 1895800

Please sign in to comment.