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:02:08 UTC

svn commit: r1134641 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java

Author: simonetripodi
Date: Sat Jun 11 14:02:07 2011
New Revision: 1134641

URL: http://svn.apache.org/viewvc?rev=1134641&view=rev
Log:
minor format

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java?rev=1134641&r1=1134640&r2=1134641&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java Sat Jun 11 14:02:07 2011
@@ -45,13 +45,13 @@ public interface Graph<V extends Vertex,
      *
      * @return all edges which touch this vertex.
      */
-    Set<E> getEdges(Vertex v);
+    Set<E> getEdges( Vertex v );
 
     /**
      * Return the set of {@link Vertex} on the input {@link Edge} (2 for normal edges, > 2 for HyperEdges)
      *
      * @return the set of {@link Vertex} on this Edge.
      */
-    Set<V> getVertices(Edge e);
+    Set<V> getVertices( Edge e );
 
 }