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 16:16:20 UTC

svn commit: r1134651 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java

Author: simonetripodi
Date: Sat Jun 11 14:16:20 2011
New Revision: 1134651

URL: http://svn.apache.org/viewvc?rev=1134651&view=rev
Log:
removed redundant 'public' modifier on interface methods

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java?rev=1134651&r1=1134650&r2=1134651&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/DirectedGraph.java Sat Jun 11 14:16:20 2011
@@ -32,21 +32,21 @@ public interface DirectedGraph
      * getInbound( Vertex ) Returns the set of edges which are inbound to the
      * Vertex.
      */
-    public Set getInbound(Vertex v);
+    Set getInbound(Vertex v);
 
     /**
      * getOutbound( Vertex ) Returns the set of edges which lead away from the
      * Vertex.
      */
-    public Set getOutbound(Vertex v);
+    Set getOutbound(Vertex v);
 
     /**
      * getSource( Edge ) Returns the vertex which originates the edge.
      */
-    public Vertex getSource(Edge e);
+    Vertex getSource(Edge e);
 
     /**
      * getTarget( Edge ) Returns the vertex which terminates the edge.
      */
-    public Vertex getTarget(Edge e);
+    Vertex getTarget(Edge e);
 }