We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have a project with both explicit and implicitly declared classes.
In the latter the default import module java.base may be missing, depending on compile order.
import module java.base
Reason: default imports are cached in environment.root.defaultImports.
environment.root.defaultImports
The text was updated successfully, but these errors were encountered:
[23] default imports between explicit/implicit classes are in conflict
91c4d68
fixes eclipse-jdt#2952
[23] default imports between explicit/implicit classes are in conflict (
e3ca2f3
#2953) don't use the cached default import java.lang.* in implicitly declared classes. fixes #2952
Resolved in #2953
Sorry, something went wrong.
stephan-herrmann
No branches or pull requests
Have a project with both explicit and implicitly declared classes.
In the latter the default
import module java.base
may be missing, depending on compile order.Reason: default imports are cached in
environment.root.defaultImports
.The text was updated successfully, but these errors were encountered: