12
0

Revert "Hotfix static instanciation"

This reverts commit 86254479
Dieser Commit ist enthalten in:
Lixfel 2020-01-25 12:51:29 +01:00
Ursprung f44fe64a43
Commit 59cac59fe9

Datei anzeigen

@ -113,9 +113,9 @@ public enum SchematicType {
return kuerzel;
}
public String toDB(){
return name().toLowerCase();
}
/*public String toDB(){
return name.toLowerCase();
}*/
public static SchematicType fromDB(String input){
return fromDB.getOrDefault(input.toLowerCase(), null);