aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandy Ryza <sandy@cloudera.com>2014-05-12 20:08:30 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-05-12 20:08:30 -0700
commit2792bd016af2a67848e6f403c4e1e05e9f3e3c2a (patch)
tree5cb2e2436ebc690b532e4808512f6f1ee2fa72ac
parent2ffd1eafd28635dcecc0ac738d4a62c05d740925 (diff)
downloadspark-2792bd016af2a67848e6f403c4e1e05e9f3e3c2a.tar.gz
spark-2792bd016af2a67848e6f403c4e1e05e9f3e3c2a.tar.bz2
spark-2792bd016af2a67848e6f403c4e1e05e9f3e3c2a.zip
SPARK-1815. SparkContext should not be marked DeveloperApi
Author: Sandy Ryza <sandy@cloudera.com> Closes #753 from sryza/sandy-spark-1815 and squashes the following commits: 957a8ac [Sandy Ryza] SPARK-1815. SparkContext should not be marked DeveloperApi
-rw-r--r--core/src/main/scala/org/apache/spark/SparkContext.scala2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/src/main/scala/org/apache/spark/SparkContext.scala b/core/src/main/scala/org/apache/spark/SparkContext.scala
index 35beff0f8e..c43b4fd6d9 100644
--- a/core/src/main/scala/org/apache/spark/SparkContext.scala
+++ b/core/src/main/scala/org/apache/spark/SparkContext.scala
@@ -50,7 +50,6 @@ import org.apache.spark.ui.SparkUI
import org.apache.spark.util.{ClosureCleaner, MetadataCleaner, MetadataCleanerType, TimeStampedWeakValueHashMap, Utils}
/**
- * :: DeveloperApi ::
* Main entry point for Spark functionality. A SparkContext represents the connection to a Spark
* cluster, and can be used to create RDDs, accumulators and broadcast variables on that cluster.
*
@@ -58,7 +57,6 @@ import org.apache.spark.util.{ClosureCleaner, MetadataCleaner, MetadataCleanerTy
* this config overrides the default configs as well as system properties.
*/
-@DeveloperApi
class SparkContext(config: SparkConf) extends Logging {
// This is used only by YARN for now, but should be relevant to other cluster types (Mesos,