diff --git a/Bibliothek/src/de/hs_mannheim/informatik/bibliothek/domain/Bibliothek.java b/Bibliothek/src/de/hs_mannheim/informatik/bibliothek/domain/Bibliothek.java index 9c6ba6b..8c67097 100644 --- a/Bibliothek/src/de/hs_mannheim/informatik/bibliothek/domain/Bibliothek.java +++ b/Bibliothek/src/de/hs_mannheim/informatik/bibliothek/domain/Bibliothek.java @@ -36,7 +36,7 @@ public class Bibliothek { } else { buch.reduzierExemplar(); student.buchAusleihen(buch); - msg = "Das Buch " + "\"" + buch.getTitel() + "\"" + " wurde erfolgreich ausgeliehen"; + msg = "Das Buch " + buch.getTitel() + " wurde erfolgreich ausgeliehen"; } return msg; }