blöder rebase Fehler gefixt

This commit is contained in:
Daniel Schick 2023-01-25 16:43:05 +01:00
parent 1f5209bcd3
commit 1604b239b0

View File

@ -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<PAS> newPasList = new List<PAS>();
const string sheetTitle = "8. PAX - Arrival";
string sheetTitle = "8. PAX - Arrival";
if (reader.HasWorksheetNamed(sheetTitle))
{