Merge branch 'develop' into feature/JDK11
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
jenkins
2025-10-21 15:15:20 +02:00

View File

@@ -162,6 +162,8 @@ public class UtilityString {
}
public static LocalDate parseLocalDate(String value) throws IOException {
if (value == null || value.isEmpty())
return null;
String format = determineDateFormat(value);
if (format == null) {
try {