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:15:49 UTC

svn commit: r1298087 - /commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/SpanningTree.java

Author: simonetripodi
Date: Wed Mar  7 20:15:48 2012
New Revision: 1298087

URL: http://svn.apache.org/viewvc?rev=1298087&view=rev
Log:
restored SpanningTree class and adapted to current APIs

Added:
    commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/SpanningTree.java
      - copied, changed from r1297890, commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/SpanningTree.java

Copied: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/SpanningTree.java (from r1297890, commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/SpanningTree.java)
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/SpanningTree.java?p2=commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/SpanningTree.java&p1=commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/SpanningTree.java&r1=1297890&r2=1298087&rev=1298087&view=diff
==============================================================================
--- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/SpanningTree.java (original)
+++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/main/java/org/apache/commons/graph/SpanningTree.java Wed Mar  7 20:15:48 2012
@@ -27,7 +27,7 @@ package org.apache.commons.graph;
  * @param <WE> the Graph weighted edges type
  * @param <W> the weight type
  */
-public interface SpanningTree<V extends Vertex, WE extends WeightedEdge<W>, W>
+public interface SpanningTree<V, WE, W>
     extends UndirectedGraph<V, WE>, Weighted<W>
 {