slfan1989 opened a new issue, #2026: URL: https://github.com/apache/auron/issues/2026
## Description ### Problem The codebase currently uses the deprecated `scala.collection.JavaConverters` API for Java-Scala collection conversions. This API was deprecated in Scala `2.13` in favor of `scala.jdk.CollectionConverters`. ### Solution The project already includes `scala-collection-compat` dependency (version `2.12.0`), which provides a compatibility layer that allows using the modern `scala.jdk.CollectionConverters` API in Scala `2.12`. ### Change - Replace all imports of `scala.collection.JavaConverters` with `scala.jdk.CollectionConverters`. - Remove the warning suppression configuration for JavaConverters deprecation warnings. ### Environment - Current Scala version: 2.12.18 - scala-collection-compat version: 2.12.0 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
