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";
}
int rows = 0;
int cols = 0;
int pagesPerSheet = 0;
int rows;
int cols;
int pagesPerSheet;
switch (mode) {
case "DEFAULT":
pagesPerSheet = request.getPagesPerSheet();