removed unnecessary normalization

This commit is contained in:
2026-06-17 13:20:29 +02:00
parent a4420c2b6b
commit 72d13316ea
@@ -23,8 +23,7 @@ public record TariffConfiguration(Map<String, BigDecimal> animalBaseSums,
throw new IllegalArgumentException("Tierart darf nicht leer oder null sein.");
}
String normalizedKey = species.trim().toUpperCase();
BigDecimal baseSum = animalBaseSums.get(normalizedKey);
BigDecimal baseSum = animalBaseSums.get(species);
if (baseSum == null) {
throw new IllegalArgumentException(