Github user mateiz commented on a diff in the pull request:
https://github.com/apache/spark/pull/497#discussion_r12340534
--- Diff: graphx/src/main/scala/org/apache/spark/graphx/EdgeTriplet.scala
---
@@ -63,4 +63,6 @@ class EdgeTriplet[VD, ED] extends Edge[ED] {
if (srcId == vid) srcAttr else { assert(dstId == vid); dstAttr }
override def toString = ((srcId, srcAttr), (dstId, dstAttr),
attr).toString()
+
+ def toTuple = ((srcId, srcAttr), (dstId, dstAttr), attr)
--- End diff --
Add an explicit return type to this
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---