diff --git a/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java b/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java index e53eb4a..88350d7 100644 --- a/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java +++ b/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java @@ -176,17 +176,14 @@ public class Spreadsheet { continue; } - System.out.println("Beginning of loop " + s); if (!(s.matches("[-\\+\\*/]"))) { if(s.matches("[A-Z][0-9]*")) { int col = this.getCol(s); int row = this.getRow(s); - String cellValue = cells[row][col].getValue(); value = Long.parseLong(cells[row][col].getValue()); }else{ - System.out.println("in number in try"); value = Long.parseLong(s); }