Removed redundant variable initialization

This commit is contained in:
OUNZAR Aymane 2025-11-05 11:58:58 +01:00
parent a270f283e0
commit 9e4d764ab7

View File

@ -54,9 +54,9 @@ public class MultiPageLayoutController {
mode = "DEFAULT"; mode = "DEFAULT";
} }
int rows = 0; int rows;
int cols = 0; int cols;
int pagesPerSheet = 0; int pagesPerSheet;
switch (mode) { switch (mode) {
case "DEFAULT": case "DEFAULT":
pagesPerSheet = request.getPagesPerSheet(); pagesPerSheet = request.getPagesPerSheet();