Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
0.5
-
None
Description
Hi,
I think I've spotted a small issue with actual code generated by gora-compiler.
For each field in source Avro schema, it will generate a isDirtyXXX method which have a value parameter which is not really used.
For instance, for a content field, the following code is generated :
public boolean isContentDirty(java.lang.CharSequence value) { return isDirty(6); }
I would expect the following code to be generated instead (ie. without value parameter) :
public boolean isContentDirty() { return isDirty(6); }
Regards,