From 60fc1a993551ffd783da7306a9aff4c249195535 Mon Sep 17 00:00:00 2001 From: 3012330 <3012330@stud.hs-mannheim.de> Date: Wed, 3 Jan 2024 15:05:23 +0100 Subject: [PATCH] =?UTF-8?q?Maximale=20Gr=C3=B6=C3=9Fe=20von=20Spreadsheet?= =?UTF-8?q?=20(und=20minimale,=20dass=20es=20immer=20mindestens=201=20Spal?= =?UTF-8?q?te/Zeile=20hat)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java b/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java index 312e2bd..ac30b00 100644 --- a/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java +++ b/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java @@ -22,7 +22,7 @@ public class Spreadsheet { */ public Spreadsheet(int rows, int cols) { - // TODO limit the maximum size on 99 (1..99) rows and 26 (A..Z) columns + // TODO limit the maximum size on 99 (1..99) rows and 26 (A..Z) columns test if (rows > 99) { rows = 99;