This commit is contained in:
Volker Berlin 2020-02-24 11:17:11 +01:00
parent 88e539f2a0
commit a535c48363

View File

@ -155,8 +155,14 @@ public class TypeManager {
this.name = name;
}
/**
* Mark that the field was used in any getter or setter.
*
* @param fieldName
* the name of the field
*/
void useFieldName( NamedStorageType fieldName ) {
neededFields.add( fieldName.getName());
neededFields.add( fieldName.getName() );
}
/**