diff options
author | Felix Kehrer <felix.kehrer@gmail.com> | 2018-05-25 20:58:18 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-27 14:07:11 +0200 |
commit | 309480b1d4edef5a0f8762ee1d18aeb58ec0fe90 (patch) | |
tree | 46c51126ce54c2950c742eb4c2eb1ee083daee57 | |
parent | 36f7e786ecf39d981d446ba00849c16e7707ba04 (diff) | |
download | sepm-groupproject-309480b1d4edef5a0f8762ee1d18aeb58ec0fe90.tar.gz sepm-groupproject-309480b1d4edef5a0f8762ee1d18aeb58ec0fe90.tar.xz sepm-groupproject-309480b1d4edef5a0f8762ee1d18aeb58ec0fe90.zip |
changed expection message to be german #27033
-rw-r--r-- | src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dto/RegistrationValidator.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dto/RegistrationValidator.java b/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dto/RegistrationValidator.java index b3336b7..805e306 100644 --- a/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dto/RegistrationValidator.java +++ b/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dto/RegistrationValidator.java @@ -51,9 +51,9 @@ public class RegistrationValidator { "Invalid Registration: Employee with ID {} was added twice", registration.employee().id()); throw new InvalidRegistrationException( - "Person with the ID: " + "Person mit der ID: " + registration.employee().id() - + " was added more than once!"); + + " wurde mehrmals hinzugefügt!"); } if (registration.employee().isPilot()) { pilotIds.add(registration.employee().id()); |