Skip to content

Commit d352b7e

Browse files
committed
Removed unused RunablePrune class
1 parent e43280a commit d352b7e

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/main/java/info/debatty/java/graphs/Graph.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1152,18 +1152,3 @@ public final boolean equals(final Object obj) {
11521152
return this.map.equals(other.map);
11531153
}
11541154
}
1155-
1156-
class RunnablePrune implements Runnable {
1157-
1158-
private final NeighborList nl;
1159-
private final double threshold;
1160-
1161-
RunnablePrune(final NeighborList nl, final double threshold) {
1162-
this.nl = nl;
1163-
this.threshold = threshold;
1164-
}
1165-
1166-
public void run() {
1167-
nl.prune(threshold);
1168-
}
1169-
}

0 commit comments

Comments
 (0)