All of a sudden, the Java classes being generated by Xtend seem to contain invalid syntax.
eg:
public Long getEntityId() {
return ??field.simpleName??;
}
where previously the syntax was generated correctly:
public Long getEntityId() {
return entityId;
}
I haven't changed anything related to this class, or the processor - I've simply done an update from my source control.