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.

Author: Marcelo Vanzin <vanzin@cloudera.com>

Closes #11734 from vanzin/SPARK-13626-api.
  • Loading branch information
Marcelo Vanzin committed Mar 15, 2016
1 parent dddf2f2 commit 41eaabf
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 41eaabf

Please sign in to comment.