You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
In com.googlecode.androidannotations.generation.SourceCodewriter.openBinary(JPackage, String), we call javax.annotation.processing.Filer.createSourceFile(CharSequence, Element...) to generate the source files.
However, we do not give any second parameter, so the varargs is an empty array.
Here is what's said in the javadoc about this parameter :
originatingElements - type or package elements causally associated with the creation of this file, may be elided or null
I think we should actually give it a value. This would help the Eclipse compiler understand which elements are bound to which generated file. I need to check, but it may even remove the generated classes when you remove / rename a resource.