You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/16 18:32:47 UTC

svn commit: r1136535 - /commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java

Author: simonetripodi
Date: Thu Jun 16 16:32:46 2011
New Revision: 1136535

URL: http://svn.apache.org/viewvc?rev=1136535&view=rev
Log:
no needs to depend from the concrete implementation for LabeledVertex

Modified:
    commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java

Modified: commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java?rev=1136535&r1=1136534&r2=1136535&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java (original)
+++ commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java Thu Jun 16 16:32:46 2011
@@ -22,8 +22,9 @@ package org.apache.commons.graph.model;
 import static java.lang.String.format;
 
 import org.apache.commons.graph.LabeledEdge;
+import org.apache.commons.graph.LabeledVertex;
 
-public class BaseLabeledEdge<V extends BaseLabeledVertex>
+public class BaseLabeledEdge<V extends LabeledVertex>
     implements LabeledEdge<V>
 {