Closed der-R closed 1 year ago
Thanks so much for the fix @der-R!
Can you make sure your email is verified? The GitHub Actions don't want to start for this PR with the message:
Error: .github#L1 Please verify your email address to run GitHub Actions workflows. https://github.com/settings/emails
Verified my E-Mail and did a force-push to trigger the action. Hope it works now.
…JDT compiler
While OpenJDK / Sun compiler prints out the fully qualified name for PackageElement objects, the Eclipse JDT compiler adds a 'package ' in front of it which leads to wrong path name when generating the builder files. To fix this, the qualified name is explicitly used.
Code of eclipse JDT toString() method:
Compared to OpenJDK:
.isUnnamed() check is not necessary anymore, because getQualifiedName() returns an empty string in case of an empty package.