aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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]
}