(fix) Konfiguration-Setup Umbau zu SCS

This commit is contained in:
stefan
2025-07-19 14:19:05 +02:00
parent e38ab27fbe
commit db465e461e
5 changed files with 13 additions and 25 deletions
@@ -19,7 +19,7 @@ enum class AppEnvironment {
val envName = System.getenv("APP_ENV")?.uppercase() ?: "DEVELOPMENT"
return try {
valueOf(envName)
} catch (e: IllegalArgumentException) {
} catch (_: IllegalArgumentException) {
println("Warnung: Unbekannte Umgebung '$envName', verwende DEVELOPMENT")
DEVELOPMENT
}