check?
parent
3f4d6fb828
commit
bdb34ab86b
|
@ -222,7 +222,6 @@ public class Bibliothek {
|
|||
String text = m.getClass().toString();
|
||||
int lastDotIndex = text.lastIndexOf(".");
|
||||
String substring = text.substring(lastDotIndex + 1);
|
||||
System.out.println(substring);
|
||||
switch (substring) {
|
||||
case "Buch":
|
||||
Buch b = (Buch) m;
|
||||
|
@ -263,7 +262,6 @@ public class Bibliothek {
|
|||
String text = m.getClass().toString();
|
||||
int lastDotIndex = text.lastIndexOf(".");
|
||||
String substring = text.substring(lastDotIndex + 1);
|
||||
System.out.println(substring);
|
||||
switch (substring) {
|
||||
case "Buch":
|
||||
Buch b = (Buch) m;
|
||||
|
|
Loading…
Reference in New Issue