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 2012/04/23 12:53:39 UTC

svn commit: r1329172 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/CommonsGraph.java

Author: simonetripodi
Date: Mon Apr 23 10:53:39 2012
New Revision: 1329172

URL: http://svn.apache.org/viewvc?rev=1329172&view=rev
Log:
dropped unused generic types

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/CommonsGraph.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/CommonsGraph.java?rev=1329172&r1=1329171&r2=1329172&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/CommonsGraph.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/CommonsGraph.java Mon Apr 23 10:53:39 2012
@@ -48,12 +48,8 @@ import org.apache.commons.graph.visit.Vi
 
 /**
  * The Apache Commons Graph package is a toolkit for managing graphs and graph based data structures.
- *
- * @param <V> the Graph vertices type
- * @param <E> the Graph edges type
- * @param <G> the Graph type
  */
-public final class CommonsGraph<V, E, G extends Graph<V, E>>
+public final class CommonsGraph
 {
 
     /**