Author: simonetripodi
Date: Sat Jun 11 16:57:22 2011
New Revision: 1134691
URL: http://svn.apache.org/viewvc?rev=1134691&view=rev
Log:
removed redundand 'public' modifier in interface
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=1134691&r1=1134690&r2=1134691&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:57:22 2011
@@ -30,36 +30,36 @@ public interface MutableGraph
/**
* Adds a feature to the Vertex attribute of the MutableGraph object
*/
- public void addVertex(Vertex v)
+ void addVertex(Vertex v)
throws GraphException;
/**
* Description of the Method
*/
- public void removeVertex(Vertex v)
+ void removeVertex(Vertex v)
throws GraphException;
/**
* Adds a feature to the Edge attribute of the MutableGraph object
*/
- public void addEdge(Edge e)
+ void addEdge(Edge e)
throws GraphException;
/**
* Description of the Method
*/
- public void removeEdge(Edge e)
+ void removeEdge(Edge e)
throws GraphException;
/**
* Description of the Method
*/
- public void connect(Edge e, Vertex v)
+ void connect(Edge e, Vertex v)
throws GraphException;
/**
* Description of the Method
*/
- public void disconnect(Edge e, Vertex v)
+ void disconnect(Edge e, Vertex v)
throws GraphException;
}