Skip to content

Commit a04765c

Browse files
committed
Remove unnecessary toOps call
1 parent 57202e8 commit a04765c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphx/src/main/scala/org/apache/spark/graphx/impl/VertexPartitionBaseOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private[graphx] abstract class VertexPartitionBaseOps
105105
}
106106
i = newMask.nextSetBit(i + 1)
107107
}
108-
toOps(this.withValues(other.values)).withMask(newMask)
108+
this.withValues(other.values).withMask(newMask)
109109
}
110110
}
111111

0 commit comments

Comments
 (0)