From de940459278c955d760365ca663d9233fda211e3 Mon Sep 17 00:00:00 2001 From: "cansu.tns" Date: Mon, 24 Oct 2022 14:57:17 +0200 Subject: [PATCH] Initial commit of project. --- .../de/hs_mannheim/informatik/bibliothek/domain/Bibliothek.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }