fixing lib

This commit is contained in:
Luca Frosini 2021-03-18 10:55:23 +01:00
parent e0736193e6
commit d6b2072962
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public class RecordToDBFields {
protected final Map<String, String> tableFieldToRecordField;
protected final Map<String, String> recordFieldToTableField;
public RecordToDBFields(String typeName, Class<? extends Record> clz) throws Exception {
protected RecordToDBFields(String typeName, Class<? extends Record> clz) throws Exception {
this.clz = clz;
this.typeName = typeName;
this.tableName = typeName.toLowerCase();