From 18958006c3c6e13e8327544e14930b0d888eb148 Mon Sep 17 00:00:00 2001 From: Tim Linschoten Date: Mon, 1 Aug 2022 09:03:53 +0200 Subject: [PATCH] Updated from collectionAsScalaIterableConverter to collectionAsScalaIterableConverter since the old one is deprecated. (#1297) --- .../com/ing/bakery/interaction/RemoteInteractionService.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bakery/interaction/src/main/scala/com/ing/bakery/interaction/RemoteInteractionService.scala b/bakery/interaction/src/main/scala/com/ing/bakery/interaction/RemoteInteractionService.scala index 9709df222..e4069bcca 100644 --- a/bakery/interaction/src/main/scala/com/ing/bakery/interaction/RemoteInteractionService.scala +++ b/bakery/interaction/src/main/scala/com/ing/bakery/interaction/RemoteInteractionService.scala @@ -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