This is an automated email from the ASF dual-hosted git repository.
bhavanisudha pushed a commit to branch release-0.6.0
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/release-0.6.0 by this push:
new 85a17b2 [HUDI-1197] Fix import issue that fails scala 2.12 build
(#1976)
85a17b2 is described below
commit 85a17b2c48c9ac05d84321a261f9f07f245df31c
Author: Bhavani Sudha Saktheeswaran <[email protected]>
AuthorDate: Tue Aug 18 08:41:16 2020 -0700
[HUDI-1197] Fix import issue that fails scala 2.12 build (#1976)
---
hudi-spark/src/main/scala/org/apache/hudi/HoodieWriterUtils.scala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hudi-spark/src/main/scala/org/apache/hudi/HoodieWriterUtils.scala
b/hudi-spark/src/main/scala/org/apache/hudi/HoodieWriterUtils.scala
index 484605c..294050b 100644
--- a/hudi-spark/src/main/scala/org/apache/hudi/HoodieWriterUtils.scala
+++ b/hudi-spark/src/main/scala/org/apache/hudi/HoodieWriterUtils.scala
@@ -20,8 +20,8 @@ package org.apache.hudi
import org.apache.hudi.DataSourceWriteOptions._
import org.apache.hudi.common.config.TypedProperties
-import scala.collection.JavaConversions._
-import scala.collection.JavaConverters._
+import scala.collection.JavaConversions.mapAsJavaMap
+import scala.collection.JavaConverters.mapAsScalaMapConverter
/**
* WriterUtils to assist in write path in Datasource and tests.