Skip to content

Commit 9424787

Browse files
committed
Fix doc
1 parent ccb41c4 commit 9424787

File tree

7 files changed

+2
-13
lines changed

7 files changed

+2
-13
lines changed

src/main/java/org/javanetworkanalyzer/alg/DijkstraForCentrality.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ protected void init(VWCent startNode) {
9595
*
9696
* @param startNode
9797
* @param u Vertex u.
98-
* @return
9998
*/
10099
@Override
101100
protected boolean preRelaxStep(VWCent startNode, VWCent u) {

src/main/java/org/javanetworkanalyzer/graphcreators/GraphCreator.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,6 @@ public GraphCreator(String csvFile,
141141
*
142142
* @return The graph.
143143
*
144-
* @throws FileNotFoundException
145-
* @throws NoSuchMethodException
146144
*/
147145
public KeyedGraph<V, E> loadGraph()
148146
throws FileNotFoundException, NoSuchMethodException {

src/main/java/org/javanetworkanalyzer/progress/ProgressMonitor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ public interface ProgressMonitor {
6363
* Returns {@code true} if the process is canceled and should end as quickly
6464
* as possible.
6565
*
66-
* @return
6766
*/
6867
boolean isCancelled();
6968

src/test/java/org/javanetworkanalyzer/alg/DijkstraTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ public void testU() throws Exception {
121121
*
122122
* @return Distance matrix
123123
*
124-
* @throws Exception
125124
*/
126125
public Double[][] actualDistances(KeyedGraph<VDijkstra, Edge> g)
127126
throws Exception {

src/test/java/org/javanetworkanalyzer/alg/StrahlerTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ public class StrahlerTest {
6161
/**
6262
* Tests the {@link #prepareTree()} tree.
6363
*
64-
* @throws IllegalArgumentException
6564
*/
6665
@Test
6766
public void testStrahler() {

src/test/java/org/javanetworkanalyzer/analyzers/GraphAnalyzerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,8 @@ protected void checkCloseness(
381381
/**
382382
* Prints the amount of time graph analysis took.
383383
*
384-
* @param time
385-
* @param analysisType
384+
* @param time The time.
385+
* @param analysisType analysis type
386386
*/
387387
protected void printTime(double time, String analysisType) {
388388
LOGGER.info("({} ms) {} {} Graph Analysis",

src/test/java/org/javanetworkanalyzer/graphcreators/GraphPrep.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ public abstract class GraphPrep<V extends VId, E extends Edge<E>> {
7878
*
7979
* @return The original weighted directed graph
8080
*
81-
* @throws NoSuchMethodException
8281
*/
8382
public abstract DirectedWeightedPseudoG<V, E> weightedDirected()
8483
throws NoSuchMethodException;
@@ -88,7 +87,6 @@ public abstract DirectedWeightedPseudoG<V, E> weightedDirected()
8887
*
8988
* @return A weighted edge-reversed view
9089
*
91-
* @throws NoSuchMethodException
9290
*/
9391
public WeightedEdgeReversedG<V, E> weightedReversed() throws
9492
NoSuchMethodException {
@@ -100,7 +98,6 @@ public WeightedEdgeReversedG<V, E> weightedReversed() throws
10098
*
10199
* @return A weighted undirected view
102100
*
103-
* @throws NoSuchMethodException
104101
*/
105102
public UndirectedG<V, E> weightedUndirected() throws
106103
NoSuchMethodException {
@@ -112,7 +109,6 @@ public UndirectedG<V, E> weightedUndirected() throws
112109
*
113110
* @return An unweighted directed view
114111
*
115-
* @throws NoSuchMethodException
116112
*/
117113
public DirectedG<V, E> directed()
118114
throws NoSuchMethodException {
@@ -124,7 +120,6 @@ public DirectedG<V, E> directed()
124120
*
125121
* @return An unweighted edge-reversed view
126122
*
127-
* @throws NoSuchMethodException
128123
*/
129124
public DirectedG<V, E> reversed()
130125
throws NoSuchMethodException {

0 commit comments

Comments
 (0)