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:47:37 UTC

svn commit: r1134708 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java

Author: simonetripodi
Date: Sat Jun 11 17:47:36 2011
New Revision: 1134708

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

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java?rev=1134708&r1=1134707&r2=1134708&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java Sat Jun 11 17:47:36 2011
@@ -41,7 +41,7 @@ public class GraphException extends Runt
      *
      * @param msg
      */
-    public GraphException(String msg)
+    public GraphException( String msg )
     {
         super(msg);
     }
@@ -51,7 +51,7 @@ public class GraphException extends Runt
      *
      * @param cause
      */
-    public GraphException(Throwable cause)
+    public GraphException( Throwable cause )
     {
         super( cause );
     }