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/11 18:52:15 UTC

svn commit: r1134687 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java

Author: simonetripodi
Date: Sat Jun 11 16:52:14 2011
New Revision: 1134687

URL: http://svn.apache.org/viewvc?rev=1134687&view=rev
Log:
removed redundand 'public' modifier in Path interface

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java?rev=1134687&r1=1134686&r2=1134687&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Path.java Sat Jun 11 16:52:14 2011
@@ -31,30 +31,30 @@ public interface Path
     /**
      * Returns the start of the path.
      */
-    public Vertex getStart();
+    Vertex getStart();
 
     /**
      * Returns the end of the path.
      */
-    public Vertex getEnd();
+    Vertex getEnd();
 
     /**
      * getVertices() - This returns a list of Vertices, in order as they go from
      * Start to End. This includes the Start and End vertex, and will have one
      * more entry than the Edges list.
      */
-    public List<Vertex> getVertices();
+    List<Vertex> getVertices();
 
     /**
      * getEdges() - This returns a list of Edges which comprise the path. It
      * will have one less than the list of Vertices.
      */
-    public List<Edge> getEdges();
+    List<Edge> getEdges();
 
     /**
      * size() - This returns the size of the path in terms of number of
      * verticies it visits.
      */
-    public int size();
+    int size();
 
 }