(int from, int to, int weight)
| 80 | private int weight; |
| 81 | |
| 82 | private Edge(int from, int to, int weight) { |
| 83 | this.from = from; |
| 84 | this.to = to; |
| 85 | this.weight = weight; |
| 86 | } |
| 87 | |
| 88 | @Override |
| 89 | public String toString() { |
nothing calls this directly
no outgoing calls
no test coverage detected