You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by bh...@apache.org on 2020/08/18 15:41:24 UTC

[hudi] branch master updated: [HUDI-1197] Fix import issue that fails scala 2.12 build (#1976)

This is an automated email from the ASF dual-hosted git repository.

bhavanisudha pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 824f23b  [HUDI-1197] Fix import issue that fails scala 2.12 build (#1976)
824f23b is described below

commit 824f23bcb8b017aca44a6fbd8af41f4170e1eee0
Author: Bhavani Sudha Saktheeswaran <bh...@gmail.com>
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.