12
0

Hotfix Schemtype fromDB name

Dieser Commit ist enthalten in:
Lixfel 2020-01-20 07:00:48 +01:00
Ursprung 7f167e73ea
Commit c1981cf66a

Datei anzeigen

@ -29,7 +29,7 @@ public class SchematicType {
String checktype = section.getString("checktype");
SchematicType current = new SchematicType(type, section.getString("kuerzel"), Type.valueOf(section.getString("type")), checktype != null ? fromDB(checktype) : null);
tmpTypes.add(current);
tmpFromDB.put(type, current);
tmpFromDB.put(type.toLowerCase(), current);
}
fromDB = Collections.unmodifiableMap(tmpFromDB);