Github user chiwanpark commented on a diff in the pull request:
https://github.com/apache/flink/pull/1033#discussion_r37376477
--- Diff:
flink-staging/flink-gelly-scala/src/main/scala/org/apache/flink/graph/scala/Graph.scala
---
@@ -649,10 +650,13 @@ TypeInformation : ClassTag](jgraph: jg.Graph[K, VV,
EV]) {
jtuple.f1))
}
- def run(algorithm: GraphAlgorithm[K, VV, EV]) = {
+ def run(algorithm: JGraphAlgorithm[K, VV, EV]): Graph[K,VV,EV] = {
wrapGraph(jgraph.run(algorithm))
}
+ def run(algorithm: GraphAlgorithm[K,VV,EV]): Graph[K,VV,EV] = {
--- End diff --
Please add space after comma.
---
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.
---