Author: simonetripodi
Date: Sat Jun 11 16:59:36 2011
New Revision: 1134694
URL: http://svn.apache.org/viewvc?rev=1134694&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=1134694&r1=1134693&r2=1134694&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 16:59:36 2011
@@ -25,8 +25,9 @@ import org.apache.commons.graph.exceptio
* The {@code MutableGraph} is a graph that supports the addition and removal
of {@link Vertex} and {@link Edge}s.
*/
public interface MutableGraph<V extends Vertex, E extends Edge>
- extends Graph<V, E>
+ extends Graph<V, E>
{
+
/**
* Adds a feature to the Vertex attribute of the MutableGraph object
*/
@@ -62,4 +63,5 @@ public interface MutableGraph<V extends
*/
void disconnect(E e, V v)
throws GraphException;
+
}