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 23:00:27 UTC

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

Author: simonetripodi
Date: Thu Jun 16 21:00:27 2011
New Revision: 1136676

URL: http://svn.apache.org/viewvc?rev=1136676&view=rev
Log:
added 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=1136676&r1=1136675&r2=1136676&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:00:27 2011
@@ -131,7 +131,7 @@ public final class InMemoryPath<V extend
     @Override
     public String toString()
     {
-        return format( "InMemoryPath [weigth=%s, edges=%s]", weigth, edges );
+        return format( "InMemoryPath [weigth=%s, vertices=%s, edges=%s]", weigth, edges );
     }
 
 }