Author: simonetripodi
Date: Thu Jun 16 21:01:43 2011
New Revision: 1136678

URL: http://svn.apache.org/viewvc?rev=1136678&view=rev
Log:
added missing vertices in the toString() representation

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=1136678&r1=1136677&r2=1136678&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
 Thu Jun 16 21:01:43 2011
@@ -131,7 +131,7 @@ public final class InMemoryPath<V extend
     @Override
     public String toString()
     {
-        return format( "InMemoryPath [weigth=%s, vertices=%s, edges=%s]", 
weigth, edges );
+        return format( "InMemoryPath [weigth=%s, vertices=%s, edges=%s]", 
weigth, vertices, edges );
     }
 
 }


Reply via email to