aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2011-07-14 14:39:32 -0400
committerMatei Zaharia <matei@eecs.berkeley.edu>2011-07-14 14:39:32 -0400
commit9ac461d85d1b5041070b7b4f9656e7b34ef74a82 (patch)
tree7a9fce85f73abbcb12217833096d4cf6cf81cb8e /core
parent797b4547c3ee0cad522b733eeb65cfacbef2f08c (diff)
downloadspark-9ac461d85d1b5041070b7b4f9656e7b34ef74a82.tar.gz
spark-9ac461d85d1b5041070b7b4f9656e7b34ef74a82.tar.bz2
spark-9ac461d85d1b5041070b7b4f9656e7b34ef74a82.zip
Remove RDD.toString because it looked confusing
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/spark/RDD.scala4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/src/main/scala/spark/RDD.scala b/core/src/main/scala/spark/RDD.scala
index 3f07b95191..3aba2c4ff1 100644
--- a/core/src/main/scala/spark/RDD.scala
+++ b/core/src/main/scala/spark/RDD.scala
@@ -161,10 +161,6 @@ abstract class RDD[T: ClassManifest](@transient sc: SparkContext) {
def toArray(): Array[T] = collect()
- override def toString(): String = {
- "%s(%d)".format(getClass.getSimpleName, id)
- }
-
// Take the first num elements of the RDD. This currently scans the partitions
// *one by one*, so it will be slow if a lot of partitions are required. In that
// case, use collect() to get the whole RDD instead.