Skip to content

Commit fcbf0d9

Browse files
author
Jacky Li
committed
fix scalastyle check
1 parent e7bca31 commit fcbf0d9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/CatalystConf.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ object EmptyConf extends CatalystConf {
5050
def getAllConfs: immutable.Map[String, String] = {
5151
throw new UnsupportedOperationException
5252
}
53-
}
53+
}

sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveContext.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,8 @@ class HiveContext(sc: SparkContext) extends SQLContext(sc) {
254254

255255
/* A catalyst metadata catalog that points to the Hive Metastore. */
256256
@transient
257-
override protected[sql] lazy val catalog = new HiveMetastoreCatalog(this, this) with OverrideCatalog
257+
override protected[sql] lazy val catalog =
258+
new HiveMetastoreCatalog(this, this) with OverrideCatalog
258259

259260
// Note that HiveUDFs will be overridden by functions registered in this context.
260261
@transient

0 commit comments

Comments
 (0)