Author: marcosperanza
Date: Thu Jul 12 09:40:44 2012
New Revision: 1360603
URL: http://svn.apache.org/viewvc?rev=1360603&view=rev
Log:
Fixed 'unused import' checkstyle error, no functionl modifications.
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/coloring/ColoredVertices.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/NamedExportSelector.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/BaseMutableGraph.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/scc/DefaultSccAlgorithmSelector.java
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/scc/KosarajuSharirAlgorithm.java
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/coloring/ColoredVertices.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/coloring/ColoredVertices.java?rev=1360603&r1=1360602&r2=1360603&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/coloring/ColoredVertices.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/coloring/ColoredVertices.java
Thu Jul 12 09:40:44 2012
@@ -26,10 +26,8 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.apache.commons.graph.Graph;
-
/**
- * Maintains the color for each vertex and the required number of colors for
{@link Graph} coloring.
+ * Maintains the color for each vertex and the required number of colors for
{@link org.apache.commons.graph.Graph} coloring.
*
* @param <V> the Graph vertices type.
* @param <C> the Color type.
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=1360603&r1=1360602&r2=1360603&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
Thu Jul 12 09:40:44 2012
@@ -19,16 +19,14 @@ package org.apache.commons.graph.export;
* under the License.
*/
-import org.apache.commons.graph.Graph;
-
public interface NamedExportSelector<V, E>
extends ExportSelector<V, E>
{
/**
- * Use the given name when exporting the {@link Graph} to a resource.
+ * Use the given name when exporting the {@link
org.apache.commons.graph.Graph} to a resource.
*
- * @param name the name to identify the {@link Graph}
+ * @param name the name to identify the {@link
org.apache.commons.graph.Graph}
* @return the graph export format selector
*/
ExportSelector<V, E> withName( String name );
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/BaseMutableGraph.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/BaseMutableGraph.java?rev=1360603&r1=1360602&r2=1360603&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/BaseMutableGraph.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/BaseMutableGraph.java
Thu Jul 12 09:40:44 2012
@@ -21,12 +21,11 @@ package org.apache.commons.graph.model;
import java.util.LinkedHashSet;
-import org.apache.commons.graph.Graph;
import org.apache.commons.graph.MutableGraph;
import org.apache.commons.graph.VertexPair;
/**
- * Basic abstract in-memory based of a simple mutable {@link Graph}
implementation.
+ * Basic abstract in-memory based of a simple mutable {@link
org.apache.commons.graph.Graph} implementation.
*
* This class is NOT thread safe!
*
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/scc/DefaultSccAlgorithmSelector.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/scc/DefaultSccAlgorithmSelector.java?rev=1360603&r1=1360602&r2=1360603&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/scc/DefaultSccAlgorithmSelector.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/scc/DefaultSccAlgorithmSelector.java
Thu Jul 12 09:40:44 2012
@@ -22,7 +22,6 @@ package org.apache.commons.graph.scc;
import java.util.Set;
import org.apache.commons.graph.DirectedGraph;
-import org.apache.commons.graph.Graph;
/**
* {@link SccAlgorithmSelector} implementation
@@ -37,9 +36,9 @@ public final class DefaultSccAlgorithmSe
private final DirectedGraph<V, E> graph;
/**
- * Create a default {@link SccAlgorithmSelector} for the given {@link
Graph}.
+ * Create a default {@link SccAlgorithmSelector} for the given {@link
org.apache.commons.graph.Graph}.
*
- * @param graph the {@link Graph}.
+ * @param graph the {@link org.apache.commons.graph.Graph}.
*/
public DefaultSccAlgorithmSelector( final DirectedGraph<V, E> graph )
{
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/scc/KosarajuSharirAlgorithm.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/scc/KosarajuSharirAlgorithm.java?rev=1360603&r1=1360602&r2=1360603&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/scc/KosarajuSharirAlgorithm.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/scc/KosarajuSharirAlgorithm.java
Thu Jul 12 09:40:44 2012
@@ -31,7 +31,6 @@ import java.util.List;
import java.util.Set;
import org.apache.commons.graph.DirectedGraph;
-import org.apache.commons.graph.Graph;
import org.apache.commons.graph.model.RevertedGraph;
/**
@@ -48,9 +47,9 @@ final class KosarajuSharirAlgorithm<V, E
private final DirectedGraph<V, E> graph;
/**
- * Create a new {@link KosarajuSharirAlgorithm} instance for the given
{@link Graph}.
+ * Create a new {@link KosarajuSharirAlgorithm} instance for the given
{@link org.apache.commons.graph.Graph}.
*
- * @param graph the {@link Graph} on which to apply the algorithm
+ * @param graph the {@link org.apache.commons.graph.Graph} on which to
apply the algorithm
*/
public KosarajuSharirAlgorithm( final DirectedGraph<V, E> graph )
{