Skip to content

Commit 0cf68b7

Browse files
authored
codeStyle fix
1 parent 4b5dfb2 commit 0cf68b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/thealgorithms/others/IterativeFloodFill.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.util.LinkedList;
44
import java.util.Queue;
55

6-
public class IterativeFloodFill {
6+
public final class IterativeFloodFill {
77
private IterativeFloodFill() {
88
}
99

@@ -79,3 +79,4 @@ public static void floodFill(final int[][] image, final int x, final int y, fina
7979
}
8080
}
8181
}
82+

0 commit comments

Comments
 (0)