Github user ScrapCodes commented on a diff in the pull request: https://github.com/apache/spark/pull/18143#discussion_r119088849 --- Diff: external/kafka-0-10-sql/src/main/scala/org/apache/spark/sql/kafka010/CachedKafkaConsumer.scala --- @@ -18,19 +18,19 @@ package org.apache.spark.sql.kafka010 import java.{util => ju} -import java.util.concurrent.TimeoutException - -import scala.collection.JavaConverters._ +import java.util.concurrent.{Callable, TimeoutException, TimeUnit} +import com.google.common.cache._ import org.apache.kafka.clients.consumer.{ConsumerConfig, ConsumerRecord, KafkaConsumer, OffsetOutOfRangeException} import org.apache.kafka.common.TopicPartition +import scala.collection.JavaConverters._ +import scala.util.control.NonFatal --- End diff -- Got it, you mean scala imports come right after java.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org