Repository: spark
Updated Branches:
  refs/heads/branch-2.0 5301efc17 -> 934e2aa4f


[MINOR] Fix Java style errors and remove unused imports

Fix Java style errors and remove unused imports, which are randomly found

Tested on my local machine.

Author: Xin Ren <iamsh...@126.com>

Closes #14161 from keypointt/SPARK-16437.

(cherry picked from commit f73891e0b9640e14455bdbfd999a8ff10b78a819)
Signed-off-by: Sean Owen <so...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/934e2aa4
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/934e2aa4
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/934e2aa4

Branch: refs/heads/branch-2.0
Commit: 934e2aa4f8aea409c8814f394f760f5952bd48f1
Parents: 5301efc
Author: Xin Ren <iamsh...@126.com>
Authored: Wed Jul 13 10:47:07 2016 +0100
Committer: Sean Owen <so...@cloudera.com>
Committed: Wed Jul 13 10:48:39 2016 +0100

----------------------------------------------------------------------
 .../sql/execution/datasources/parquet/ParquetFileFormat.scala     | 3 +--
 .../test/scala/org/apache/spark/sql/sources/DataSourceTest.scala  | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/934e2aa4/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetFileFormat.scala
----------------------------------------------------------------------
diff --git 
a/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetFileFormat.scala
 
b/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetFileFormat.scala
index 8cbdaeb..f1c78bb 100644
--- 
a/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetFileFormat.scala
+++ 
b/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetFileFormat.scala
@@ -778,8 +778,7 @@ private[sql] object ParquetFileFormat extends Logging {
     val assumeBinaryIsString = 
sparkSession.sessionState.conf.isParquetBinaryAsString
     val assumeInt96IsTimestamp = 
sparkSession.sessionState.conf.isParquetINT96AsTimestamp
     val writeLegacyParquetFormat = 
sparkSession.sessionState.conf.writeLegacyParquetFormat
-    val serializedConf =
-      new SerializableConfiguration(sparkSession.sessionState.newHadoopConf())
+    val serializedConf = new 
SerializableConfiguration(sparkSession.sessionState.newHadoopConf())
 
     // !! HACK ALERT !!
     //

http://git-wip-us.apache.org/repos/asf/spark/blob/934e2aa4/sql/core/src/test/scala/org/apache/spark/sql/sources/DataSourceTest.scala
----------------------------------------------------------------------
diff --git 
a/sql/core/src/test/scala/org/apache/spark/sql/sources/DataSourceTest.scala 
b/sql/core/src/test/scala/org/apache/spark/sql/sources/DataSourceTest.scala
index 206d03e..cc77d3c 100644
--- a/sql/core/src/test/scala/org/apache/spark/sql/sources/DataSourceTest.scala
+++ b/sql/core/src/test/scala/org/apache/spark/sql/sources/DataSourceTest.scala
@@ -18,7 +18,6 @@
 package org.apache.spark.sql.sources
 
 import org.apache.spark.sql._
-import org.apache.spark.sql.internal.SQLConf
 
 private[sql] abstract class DataSourceTest extends QueryTest {
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to