Author: simonetripodi
Date: Sun Mar 25 15:15:18 2012
New Revision: 1305059
URL: http://svn.apache.org/viewvc?rev=1305059&view=rev
Log:
fixed compilation issues, class restored from the wrogn location :/
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/NamedExportSelector.java
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/NamedExportSelector.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/NamedExportSelector.java?rev=1305059&r1=1305058&r2=1305059&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/NamedExportSelector.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/NamedExportSelector.java
Sun Mar 25 15:15:18 2012
@@ -19,12 +19,10 @@ package org.apache.commons.graph.export;
* under the License.
*/
-import org.apache.commons.graph.Edge;
import org.apache.commons.graph.Graph;
-import org.apache.commons.graph.Vertex;
-public interface NamedExportSelector<V extends Vertex, E extends Edge, G
extends Graph<V, E>>
- extends ExportSelector<V, E, G>
+public interface NamedExportSelector<V, E>
+ extends ExportSelector<V, E>
{
/**
@@ -33,6 +31,6 @@ public interface NamedExportSelector<V e
* @param name the name to identify the {@link Graph}
* @return the graph export format selector
*/
- ExportSelector<V, E, G> withName( String name );
+ ExportSelector<V, E> withName( String name );
}