Skip to content

Commit

Permalink
[#1202] Fix type parameter order of Verify. (#1203)
Browse files Browse the repository at this point in the history
fixes #1202
  • Loading branch information
p-f authored and Kevin Gómez committed Apr 2, 2019
1 parent beb3abb commit 3d54209
Showing 1 changed file with 6 additions and 3 deletions.
Expand Up @@ -30,13 +30,16 @@
* Verifies a graph's edge set, removing dangling edges, i.e. edges with a source- or target-id
* not matching any vertices of this graph.
*
* @param <LG> The graph type.
* @param <G> The graph head type.
* @param <V> The vertex type.
* @param <E> The edge type.
* @param <LG> The graph type.
*/
public class Verify<LG extends BaseGraph<G, V, E, LG>, G extends EPGMGraphHead,
V extends EPGMVertex, E extends EPGMEdge> implements UnaryBaseGraphToBaseGraphOperator<LG> {
public class Verify<
G extends EPGMGraphHead,
V extends EPGMVertex,
E extends EPGMEdge,
LG extends BaseGraph<G, V, E, LG>> implements UnaryBaseGraphToBaseGraphOperator<LG> {

@Override
public LG execute(LG graph) {
Expand Down

0 comments on commit 3d54209

Please sign in to comment.