Skip to content

Commit 65c0464

Browse files
author
Samuel Facchinello
committed
style: enable ParenPad in checkstyle
1 parent fd4e3f3 commit 65c0464

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/main/java/com/thealgorithms/datastructures/graphs/BellmanFord.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,11 @@ public static void main(String[] args) {
5757
obj.go();
5858
}
5959

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)) {
6365
int i;
6466
int v;
6567
int e;

0 commit comments

Comments
 (0)