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
Consider the following:
package p import p.A.B abstract class A { protected static class B { } } class C extends A { def m(B b) { } }
The import statement is not required to resolve reference to B from class C. Organize Imports (Ctrl+Shift+O) is not removing the extra import.
The text was updated successfully, but these errors were encountered:
Fix for #1184: check for inner of super, which is implicitly available
c4bee0c
ecabd6f
eric-milles
No branches or pull requests
Consider the following:
The import statement is not required to resolve reference to B from class C. Organize Imports (Ctrl+Shift+O) is not removing the extra import.
The text was updated successfully, but these errors were encountered: