File tree 2 files changed +6
-4
lines changed
src/main/java/com/thealgorithms/datastructures/graphs
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 140
140
<!-- TODO <module name="NoWhitespaceAfter"/> -->
141
141
<module name =" NoWhitespaceBefore" />
142
142
<module name =" OperatorWrap" />
143
- <!-- TODO < module name="ParenPad"/> -- >
143
+ <module name =" ParenPad" />
144
144
<module name =" TypecastParenPad" />
145
145
<module name =" WhitespaceAfter" />
146
146
<!-- TODO <module name="WhitespaceAround"/> -->
Original file line number Diff line number Diff line change @@ -57,9 +57,11 @@ public static void main(String[] args) {
57
57
obj .go ();
58
58
}
59
59
60
- public void go () { // shows distance to all vertices // Interactive run for understanding the
61
- try ( // class first time. Assumes source vertex is 0 and
62
- Scanner sc = new Scanner (System .in )) {
60
+ public void go () {
61
+ // shows distance to all vertices
62
+ // Interactive run for understanding the
63
+ // class first time. Assumes source vertex is 0 and
64
+ try (Scanner sc = new Scanner (System .in )) {
63
65
int i ;
64
66
int v ;
65
67
int e ;
You can’t perform that action at this time.
0 commit comments