From 1604b239b0591a9bf679284cc4e11e0bb683cdef Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Wed, 25 Jan 2023 16:43:05 +0100 Subject: [PATCH] =?UTF-8?q?bl=C3=B6der=20rebase=20Fehler=20gefixt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ENI2/Excel/ExcelUtil.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ENI2/Excel/ExcelUtil.cs b/ENI2/Excel/ExcelUtil.cs index be898e4f..89017150 100644 --- a/ENI2/Excel/ExcelUtil.cs +++ b/ENI2/Excel/ExcelUtil.cs @@ -2061,7 +2061,7 @@ namespace ENI2.Excel private static bool ScanCREW(Message crewMessage, ExcelReader reader, bool isOldVersion) { crewMessage.DeleteElements(); - const string sheetTitle = "6. CREW - Arrival"; + string sheetTitle = "6. CREW - Arrival"; // 6. CREW - Arrival // 5.9.22: Changed this area to work like reading from a Dakosy Sheet (by values in rows, not cell names) if (reader.HasWorksheetNamed(sheetTitle)) @@ -2173,7 +2173,7 @@ namespace ENI2.Excel private static bool ScanCREWD(Message crewdMessage, ExcelReader reader) { crewdMessage.DeleteElements(); - const string sheetTitle = "7. CREW - Departure"; + string sheetTitle = "7. CREW - Departure"; // CREW DEPARTURE if (reader.HasWorksheetNamed(sheetTitle)) { @@ -2285,7 +2285,7 @@ namespace ENI2.Excel { List newPasList = new List(); - const string sheetTitle = "8. PAX - Arrival"; + string sheetTitle = "8. PAX - Arrival"; if (reader.HasWorksheetNamed(sheetTitle)) {