aboutsummaryrefslogtreecommitdiff
path: root/graphx/src
diff options
context:
space:
mode:
authorAnkur Dave <ankurdave@gmail.com>2014-01-11 00:34:23 -0800
committerAnkur Dave <ankurdave@gmail.com>2014-01-11 11:49:35 -0800
commit0b5c49ebad9dfb69074e2638c05a07b5ab94e13a (patch)
tree7aaefd1cba77a285b62d908314bf465e15bc8c4c /graphx/src
parentfac44bbe2c10633e371cf30afa17c5e78290ca9c (diff)
downloadspark-0b5c49ebad9dfb69074e2638c05a07b5ab94e13a.tar.gz
spark-0b5c49ebad9dfb69074e2638c05a07b5ab94e13a.tar.bz2
spark-0b5c49ebad9dfb69074e2638c05a07b5ab94e13a.zip
Make nullValue and VertexSet package-private
Diffstat (limited to 'graphx/src')
-rw-r--r--graphx/src/main/scala/org/apache/spark/graphx/package.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphx/src/main/scala/org/apache/spark/graphx/package.scala b/graphx/src/main/scala/org/apache/spark/graphx/package.scala
index e6877d3195..2501314ca8 100644
--- a/graphx/src/main/scala/org/apache/spark/graphx/package.scala
+++ b/graphx/src/main/scala/org/apache/spark/graphx/package.scala
@@ -8,8 +8,8 @@ package object graphx {
// TODO: Consider using Char.
type PartitionID = Int
- type VertexSet = OpenHashSet[VertexID]
+ private[graphx] type VertexSet = OpenHashSet[VertexID]
- /** * Returns the default null-like value for a data type T. */
- def nullValue[T] = null.asInstanceOf[T]
+ /** Returns the default null-like value for a data type T. */
+ private[graphx] def nullValue[T] = null.asInstanceOf[T]
}