提交 c518df94 编写于 作者: V vasia

[gelly] minor javadoc correction: the Graph is always directed.

上级 e281e4d6
...@@ -68,7 +68,7 @@ import org.apache.flink.types.NullValue; ...@@ -68,7 +68,7 @@ import org.apache.flink.types.NullValue;
* @see org.apache.flink.graph.Vertex * @see org.apache.flink.graph.Vertex
* *
* @param <K> the key type for edge and vertex identifiers * @param <K> the key type for edge and vertex identifiers
* @param <VV> the value type for vertexes * @param <VV> the value type for vertices
* @param <EV> the value type for edges * @param <EV> the value type for edges
*/ */
@SuppressWarnings("serial") @SuppressWarnings("serial")
...@@ -79,8 +79,7 @@ public class Graph<K extends Comparable<K> & Serializable, VV extends Serializab ...@@ -79,8 +79,7 @@ public class Graph<K extends Comparable<K> & Serializable, VV extends Serializab
private final DataSet<Edge<K, EV>> edges; private final DataSet<Edge<K, EV>> edges;
/** /**
* Creates a graph from two DataSets: vertices and edges and allow setting * Creates a graph from two DataSets: vertices and edges
* the undirected property
* *
* @param vertices a DataSet of vertices. * @param vertices a DataSet of vertices.
* @param edges a DataSet of edges. * @param edges a DataSet of edges.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册