Skip to content

Commit 2d4f6e7

Browse files
committed
Minor nit style cleanup in GraphX.
1 parent 3ae0cda commit 2d4f6e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphx/src/main/scala/org/apache/spark/graphx/VertexRDD.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ abstract class VertexRDD[VD](
6868
* Provides the `RDD[(VertexId, VD)]` equivalent output.
6969
*/
7070
override def compute(part: Partition, context: TaskContext): Iterator[(VertexId, VD)] = {
71-
firstParent[ShippableVertexPartition[VD]].iterator(part, context).next.iterator
71+
firstParent[ShippableVertexPartition[VD]].iterator(part, context).next().iterator
7272
}
7373

7474
/**

0 commit comments

Comments
 (0)