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:03:10 UTC

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

Author: simonetripodi
Date: Sat Jun 11 17:03:10 2011
New Revision: 1134697

URL: http://svn.apache.org/viewvc?rev=1134697&view=rev
Log:
organized imports

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=1134697&r1=1134696&r2=1134697&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:03:10 2011
@@ -19,7 +19,7 @@ package org.apache.commons.graph;
  * under the License.
  */
 
-import org.apache.commons.graph.exception.*;
+import org.apache.commons.graph.exception.GraphException;
 
 /**
  * The {@code MutableGraph} is a graph that supports the addition and removal of {@link Vertex} and {@link Edge}s.