From c54b8cddf38dec124a4b23b4512ea363286d8570 Mon Sep 17 00:00:00 2001 From: Piotr Idzik <65706193+vil02@users.noreply.github.com> Date: Sat, 9 Sep 2023 20:48:02 +0200 Subject: [PATCH] Fix formatting of `FloodFill` (#4361) --- .../thealgorithms/backtracking/FloodFill.java | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/main/java/com/thealgorithms/backtracking/FloodFill.java b/src/main/java/com/thealgorithms/backtracking/FloodFill.java index eb4939b34243..c8219ca8ba7e 100644 --- a/src/main/java/com/thealgorithms/backtracking/FloodFill.java +++ b/src/main/java/com/thealgorithms/backtracking/FloodFill.java @@ -4,7 +4,9 @@ * Java program for Flood fill algorithm. * @author Akshay Dubey (Git-Akshay Dubey) */ -public class FloodFill { +public final class FloodFill { + private FloodFill() { + } /** * Get the color at the given coordinates of a 2D image @@ -14,7 +16,7 @@ public class FloodFill { * @param y The y co-ordinate of which color is to be obtained */ - public static int getPixel(int[][] image, int x, int y) { + public static int getPixel(final int[][] image, final int x, final int y) { return image[x][y]; } @@ -25,7 +27,7 @@ public static int getPixel(int[][] image, int x, int y) { * @param x The x co-ordinate at which color is to be filled * @param y The y co-ordinate at which color is to be filled */ - public static void putPixel(int[][] image, int x, int y, int newColor) { + public static void putPixel(final int[][] image, final int x, final int y, final int newColor) { image[x][y] = newColor; } @@ -38,11 +40,10 @@ public static void putPixel(int[][] image, int x, int y, int newColor) { * @param newColor The new color which to be filled in the image * @param oldColor The old color which is to be replaced in the image */ - public static void floodFill(int[][] image, int x, int y, int newColor, int oldColor) { - if (newColor == oldColor) return; - if (x < 0 || x >= image.length) return; - if (y < 0 || y >= image[x].length) return; - if (getPixel(image, x, y) != oldColor) return; + public static void floodFill(final int[][] image, final int x, final int y, final int newColor, final int oldColor) { + if (newColor == oldColor || x < 0 || x >= image.length || y < 0 || y >= image[x].length || getPixel(image, x, y) != oldColor) { + return; + } putPixel(image, x, y, newColor);