12
0

Hotfix Schemtype fromDB NPE

Dieser Commit ist enthalten in:
Lixfel 2020-01-20 07:05:52 +01:00
Ursprung c1981cf66a
Commit ed3e6a3e46

Datei anzeigen

@ -81,6 +81,8 @@ public class SchematicType {
}
public static SchematicType fromDB(String input){
if(input == null)
return null;
return fromDB.get(input.toLowerCase());
}