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 21:57:40 UTC

svn commit: r1136633 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/DirectedMutableWeightedGraph.java

Author: simonetripodi
Date: Thu Jun 16 19:57:39 2011
New Revision: 1136633

URL: http://svn.apache.org/viewvc?rev=1136633&view=rev
Log:
DirectedMutableWeightedGraph can't be Weighted if it doesn't implement WeightedGraph

Modified:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/DirectedMutableWeightedGraph.java

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/DirectedMutableWeightedGraph.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/DirectedMutableWeightedGraph.java?rev=1136633&r1=1136632&r2=1136633&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/DirectedMutableWeightedGraph.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/DirectedMutableWeightedGraph.java Thu Jun 16 19:57:39 2011
@@ -21,6 +21,7 @@ package org.apache.commons.graph.model;
 
 import org.apache.commons.graph.Vertex;
 import org.apache.commons.graph.WeightedEdge;
+import org.apache.commons.graph.WeightedGraph;
 
 /**
  * A memory-based implementation of a mutable, directed weighted Graph.
@@ -30,6 +31,7 @@ import org.apache.commons.graph.Weighted
  */
 public class DirectedMutableWeightedGraph<V extends Vertex, WE extends WeightedEdge<V>>
     extends DirectedMutableGraph<V, WE>
+    implements WeightedGraph<V, WE>
 {
 
 }