| 190 | } |
| 191 | |
| 192 | static class Node { |
| 193 | int index; |
| 194 | int distance; |
| 195 | |
| 196 | public Node(int index, int distance) { |
| 197 | this.index = index; |
| 198 | this.distance = distance; |
| 199 | } |
| 200 | } |
| 201 | } |
nothing calls this directly
no outgoing calls
no test coverage detected