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 19:00:19 UTC

svn commit: r1134695 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java

Author: simonetripodi
Date: Sat Jun 11 17:00:18 2011
New Revision: 1134695

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

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java?rev=1134695&r1=1134694&r2=1134695&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java Sat Jun 11 17:00:18 2011
@@ -31,37 +31,37 @@ public interface MutableGraph<V extends 
     /**
      * Adds a feature to the Vertex attribute of the MutableGraph object
      */
-    void addVertex(V v)
+    void addVertex( V v )
         throws GraphException;
 
     /**
      * Description of the Method
      */
-    void removeVertex(V v)
+    void removeVertex( V v )
         throws GraphException;
 
     /**
      * Adds a feature to the Edge attribute of the MutableGraph object
      */
-    void addEdge(E e)
+    void addEdge( E e )
         throws GraphException;
 
     /**
      * Description of the Method
      */
-    void removeEdge(E e)
+    void removeEdge( E e )
         throws GraphException;
 
     /**
      * Description of the Method
      */
-    void connect(E e, V v)
+    void connect( E e, V v )
         throws GraphException;
 
     /**
      * Description of the Method
      */
-    void disconnect(E e, V v)
+    void disconnect( E e, V v )
         throws GraphException;
 
 }