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/17 18:12:50 UTC

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

Author: simonetripodi
Date: Fri Jun 17 16:12:50 2011
New Revision: 1136921

URL: http://svn.apache.org/viewvc?rev=1136921&view=rev
Log:
InMemoryPath made non final - it has to be split between path/weightedPath

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java?rev=1136921&r1=1136920&r2=1136921&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java Fri Jun 17 16:12:50 2011
@@ -36,7 +36,7 @@ import org.apache.commons.graph.Weighted
  * @param <V> the Graph vertices type
  * @param <WE> the Graph weighted edges type
  */
-public final class InMemoryPath<V extends Vertex, WE extends WeightedEdge<V>>
+public class InMemoryPath<V extends Vertex, WE extends WeightedEdge<V>>
     implements WeightedPath<V, WE>
 {