aboutsummaryrefslogtreecommitdiff
path: root/graphx
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2015-01-31 10:40:42 -0800
committerXiangrui Meng <meng@databricks.com>2015-01-31 10:40:42 -0800
commitc84d5a10e8dbdeeeb54bc0d3f3dfb62ff0ca4fc1 (patch)
treee59c72aa8abaff6aa7e1986e9b184d371d1879c6 /graphx
parentef8974b1b7ff177d9636d091770dff64fedc385f (diff)
downloadspark-c84d5a10e8dbdeeeb54bc0d3f3dfb62ff0ca4fc1.tar.gz
spark-c84d5a10e8dbdeeeb54bc0d3f3dfb62ff0ca4fc1.tar.bz2
spark-c84d5a10e8dbdeeeb54bc0d3f3dfb62ff0ca4fc1.zip
SPARK-3359 [CORE] [DOCS] `sbt/sbt unidoc` doesn't work with Java 8
These are more `javadoc` 8-related changes I spotted while investigating. These should be helpful in any event, but this does not nearly resolve SPARK-3359, which may never be feasible while using `unidoc` and `javadoc` 8. Author: Sean Owen <sowen@cloudera.com> Closes #4193 from srowen/SPARK-3359 and squashes the following commits: 5b33f66 [Sean Owen] Additional scaladoc fixes for javadoc 8; still not going to be javadoc 8 compatible
Diffstat (limited to 'graphx')
-rw-r--r--graphx/src/main/scala/org/apache/spark/graphx/Graph.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphx/src/main/scala/org/apache/spark/graphx/Graph.scala b/graphx/src/main/scala/org/apache/spark/graphx/Graph.scala
index 84b72b390c..ab56580a3a 100644
--- a/graphx/src/main/scala/org/apache/spark/graphx/Graph.scala
+++ b/graphx/src/main/scala/org/apache/spark/graphx/Graph.scala
@@ -55,7 +55,7 @@ abstract class Graph[VD: ClassTag, ED: ClassTag] protected () extends Serializab
* @return an RDD containing the edges in this graph
*
* @see [[Edge]] for the edge type.
- * @see [[triplets]] to get an RDD which contains all the edges
+ * @see [[Graph#triplets]] to get an RDD which contains all the edges
* along with their vertex data.
*
*/