Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java Wed Mar 7 14:31:22 2012 @@ -21,7 +21,6 @@ package org.apache.commons.graph.scc; import static org.apache.commons.graph.CommonsGraph.findStronglyConnectedComponent; import static org.apache.commons.graph.CommonsGraph.newDirectedMutableGraph; -import static org.apache.commons.graph.CommonsGraph.newDirectedMutableWeightedGraph; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; @@ -34,7 +33,6 @@ import org.apache.commons.graph.model.Ba import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.DirectedMutableGraph; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.junit.Test; /**
Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java Wed Mar 7 14:31:22 2012 @@ -33,7 +33,6 @@ import org.apache.commons.graph.model.Ba import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.DirectedMutableGraph; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.junit.Test; /** Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java Wed Mar 7 14:31:22 2012 @@ -21,7 +21,6 @@ package org.apache.commons.graph.scc; import static org.apache.commons.graph.CommonsGraph.findStronglyConnectedComponent; import static org.apache.commons.graph.CommonsGraph.newDirectedMutableGraph; -import static org.apache.commons.graph.CommonsGraph.newDirectedMutableWeightedGraph; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; @@ -34,7 +33,6 @@ import org.apache.commons.graph.model.Ba import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.DirectedMutableGraph; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.junit.Test; /** Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java Wed Mar 7 14:31:22 2012 @@ -27,13 +27,9 @@ import java.util.HashMap; import java.util.Map; import org.apache.commons.graph.Path; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.InMemoryWeightedPath; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/BellmannFordTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/BellmannFordTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/BellmannFordTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/BellmannFordTestCase.java Wed Mar 7 14:31:22 2012 @@ -23,15 +23,10 @@ import static junit.framework.Assert.ass import static org.apache.commons.graph.CommonsGraph.findShortestPath; import static org.junit.Assert.fail; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.WeightedPath; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.apache.commons.graph.model.InMemoryWeightedPath; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/DijkstraTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/DijkstraTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/DijkstraTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/DijkstraTestCase.java Wed Mar 7 14:31:22 2012 @@ -23,14 +23,9 @@ import static junit.framework.Assert.ass import static org.apache.commons.graph.CommonsGraph.findShortestPath; import org.apache.commons.graph.Path; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.apache.commons.graph.model.InMemoryWeightedPath; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/FloydWarshallTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/FloydWarshallTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/FloydWarshallTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/FloydWarshallTestCase.java Wed Mar 7 14:31:22 2012 @@ -26,15 +26,10 @@ import static org.apache.commons.graph.C import org.apache.commons.graph.MutableGraph; import org.apache.commons.graph.UndirectedGraph; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.WeightedPath; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.apache.commons.graph.model.InMemoryWeightedPath; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/BoruvkaTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/BoruvkaTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/BoruvkaTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/BoruvkaTestCase.java Wed Mar 7 14:31:22 2012 @@ -23,14 +23,9 @@ import static junit.framework.Assert.ass import static junit.framework.Assert.fail; import static org.apache.commons.graph.CommonsGraph.minimumSpanningTree; -import org.apache.commons.graph.SpanningTree; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.MutableSpanningTree; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/KruskalTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/KruskalTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/KruskalTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/KruskalTestCase.java Wed Mar 7 14:31:22 2012 @@ -23,14 +23,9 @@ import static junit.framework.Assert.ass import static junit.framework.Assert.fail; import static org.apache.commons.graph.CommonsGraph.minimumSpanningTree; -import org.apache.commons.graph.SpanningTree; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.MutableSpanningTree; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/PrimTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/PrimTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/PrimTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/PrimTestCase.java Wed Mar 7 14:31:22 2012 @@ -23,14 +23,9 @@ import static junit.framework.Assert.ass import static junit.framework.Assert.fail; import static org.apache.commons.graph.CommonsGraph.minimumSpanningTree; -import org.apache.commons.graph.SpanningTree; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.MutableSpanningTree; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/ReverseDeleteTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/ReverseDeleteTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/ReverseDeleteTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/ReverseDeleteTestCase.java Wed Mar 7 14:31:22 2012 @@ -22,14 +22,9 @@ package org.apache.commons.graph.spannin import static junit.framework.Assert.assertEquals; import static org.apache.commons.graph.CommonsGraph.minimumSpanningTree; -import org.apache.commons.graph.SpanningTree; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.MutableSpanningTree; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test;
