[chore:] big code-cleanup session
This commit is contained in:
@@ -14,7 +14,6 @@ public class AddressRepair(ProgressWindow progressWindow)
|
||||
{
|
||||
foreach (var person in list.KasPersons)
|
||||
{
|
||||
|
||||
// German PLZ too short (e.g. Dresden)
|
||||
if (person.IsGermany() && person.plz.Length <= 4)
|
||||
{
|
||||
@@ -23,13 +22,11 @@ public class AddressRepair(ProgressWindow progressWindow)
|
||||
person.plz = "0" + person.plz;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.Log($"Error while performing address shortener: {ex.Message}", Logger.LogType.Error);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user