wForget commented on code in PR #5410: URL: https://github.com/apache/kyuubi/pull/5410#discussion_r1363224816
########## externals/kyuubi-spark-sql-engine/src/main/scala/org/apache/spark/kyuubi/SQLOperationListener.scala: ########## @@ -20,6 +20,8 @@ package org.apache.spark.kyuubi import java.util.Properties import java.util.concurrent.ConcurrentHashMap +import scala.jdk.CollectionConverters._ Review Comment: change to: ``` import scala.collection.JavaConverters._ ``` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
