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 2012/03/07 21:26:46 UTC

svn commit: r1298093 - /commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/model/MutableSpanningTree.java

Author: simonetripodi
Date: Wed Mar  7 20:26:46 2012
New Revision: 1298093

URL: http://svn.apache.org/viewvc?rev=1298093&view=rev
Log:
MutableSpanningTree has to implement SpanningTree

Modified:
    commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/model/MutableSpanningTree.java

Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/model/MutableSpanningTree.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/model/MutableSpanningTree.java?rev=1298093&r1=1298092&r2=1298093&view=diff
==============================================================================
--- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/model/MutableSpanningTree.java (original)
+++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/model/MutableSpanningTree.java Wed Mar  7 20:26:46 2012
@@ -19,6 +19,7 @@ package org.apache.commons.graph.model;
  * under the License.
  */
 
+import org.apache.commons.graph.SpanningTree;
 import org.apache.commons.graph.weight.Monoid;
 
 /**
@@ -32,6 +33,7 @@ import org.apache.commons.graph.weight.M
  */
 public final class MutableSpanningTree<V, WE, W>
     extends UndirectedMutableGraph<V, WE>
+    implements SpanningTree<V, WE, W>
 {
 
     private static final long serialVersionUID = -4371938772248573879L;