Skip to content
Snippets Groups Projects
Commit 0b5c49eb authored by Ankur Dave's avatar Ankur Dave
Browse files

Make nullValue and VertexSet package-private

parent fac44bbe
No related branches found
No related tags found
No related merge requests found
...@@ -8,8 +8,8 @@ package object graphx { ...@@ -8,8 +8,8 @@ package object graphx {
// TODO: Consider using Char. // TODO: Consider using Char.
type PartitionID = Int type PartitionID = Int
type VertexSet = OpenHashSet[VertexID] private[graphx] type VertexSet = OpenHashSet[VertexID]
/** * Returns the default null-like value for a data type T. */ /** Returns the default null-like value for a data type T. */
def nullValue[T] = null.asInstanceOf[T] private[graphx] def nullValue[T] = null.asInstanceOf[T]
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment