From 3564a49f86feb314afeee87f088f7d4d3dd4da05 Mon Sep 17 00:00:00 2001 From: "cansu.tns" Date: Fri, 21 Oct 2022 16:08:50 +0200 Subject: [PATCH] Initial commit of project. --- .../de/hs_mannheim/informatik/bibliothek/domain/Student.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Bibliothek/src/de/hs_mannheim/informatik/bibliothek/domain/Student.java b/Bibliothek/src/de/hs_mannheim/informatik/bibliothek/domain/Student.java index 5d5e2f3..70f9b30 100644 --- a/Bibliothek/src/de/hs_mannheim/informatik/bibliothek/domain/Student.java +++ b/Bibliothek/src/de/hs_mannheim/informatik/bibliothek/domain/Student.java @@ -21,10 +21,6 @@ public class Student extends Person { return matrikelnummer; } - public ArrayList getAusgelieheneBuecher() { - return buecher; - } - @Override public String toString() { return super.toString() + " matrikelnummer: " + matrikelnummer;