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