Skip to content

Commit 5570e74

Browse files
committed
fix some code style
1 parent 41466ff commit 5570e74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/hive/src/main/scala/org/apache/spark/sql/hive/client/IsolatedClientLoader.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private[hive] object IsolatedClientLoader extends Logging {
136136

137137
// A map from a given pair of HiveVersion and Hadoop version to jar files.
138138
// It is only used by forVersion.
139-
private[hive] val resolvedVersions =
139+
private val resolvedVersions =
140140
new scala.collection.mutable.HashMap[(HiveVersion, String), Seq[URL]]
141141
}
142142

@@ -293,5 +293,5 @@ private[hive] class IsolatedClientLoader(
293293
* The place holder for shared Hive client for all the HiveContext sessions (they share an
294294
* IsolatedClientLoader).
295295
*/
296-
private var cachedHive: Any = null
296+
private[hive] var cachedHive: Any = null
297297
}

0 commit comments

Comments
 (0)