Author: simonetripodi
Date: Fri Jun 24 10:39:52 2011
New Revision: 1139236

URL: http://svn.apache.org/viewvc?rev=1139236&view=rev
Log:
getShortestDistance method doesn't need to be visible outside the package

Modified:
    
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/AllVertexPairsShortestPath.java

Modified: 
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/AllVertexPairsShortestPath.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/AllVertexPairsShortestPath.java?rev=1139236&r1=1139235&r2=1139236&view=diff
==============================================================================
--- 
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/AllVertexPairsShortestPath.java
 (original)
+++ 
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/AllVertexPairsShortestPath.java
 Fri Jun 24 10:39:52 2011
@@ -125,7 +125,7 @@ public final class AllVertexPairsShortes
      * @param target The target Vertex
      * @return Returns the shortest distance between source and target.
      */
-    public Double getShortestDistance( V source, V target )
+    Double getShortestDistance( V source, V target )
     {
         if ( source == null )
         {


Reply via email to