Author: simonetripodi
Date: Sat Jun 11 13:51:25 2011
New Revision: 1134636
URL: http://svn.apache.org/viewvc?rev=1134636&view=rev
Log:
removed redundant 'public' modifier
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java?rev=1134636&r1=1134635&r2=1134636&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/Graph.java
Sat Jun 11 13:51:25 2011
@@ -28,23 +28,23 @@ public interface Graph
/**
* getVertices - Returns the total set of Vertices in the graph.
*/
- public Set getVertices();
+ Set getVertices();
/**
* getEdges - Returns the total set of Edges in the graph.
*/
- public Set getEdges();
+ Set getEdges();
/**
* getEdges( Vertex ) - This method will return all edges which touch this
* vertex.
*/
- public Set getEdges(Vertex v);
+ Set getEdges(Vertex v);
/**
* getVertices( Edge ) - This method will return the set of Verticies on
* this Edge. (2 for normal edges, > 2 for HyperEdges.)
*/
- public Set getVertices(Edge e);
+ Set getVertices(Edge e);
}