[FIX] the code generation does not manage corectly the field name

This commit is contained in:
Edouard DUPIN 2025-04-19 18:55:16 +02:00
parent 18329659c8
commit 11b49ea95d

View File

@ -58,7 +58,7 @@ public class ClassObjectModel extends ClassModel {
for (final Field field : superClass.getFields()) {
String name;
try {
name = AnnotationTools.getFieldNameRaw(field);
name = field.getName();
if (filedName.equals(name)) {
return true;
}