Skip to content

Commit

Permalink
[SPARK-13626] [core] Revert change to SparkConf's constructor.
Browse files Browse the repository at this point in the history
It shouldn't be private.
  • Loading branch information
Marcelo Vanzin committed Mar 15, 2016
1 parent 48978ab commit 7b9a92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/org/apache/spark/SparkConf.scala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import org.apache.spark.util.Utils
*
* @param loadDefaults whether to also load values from Java system properties
*/
class SparkConf private[spark] (loadDefaults: Boolean) extends Cloneable with Logging {
class SparkConf(loadDefaults: Boolean) extends Cloneable with Logging {

import SparkConf._

Expand Down

0 comments on commit 7b9a92b

Please sign in to comment.