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 foo; public class Bar { public static class Baz { } }
import foo.Bar import foo.Bar.Baz Bar.Baz baz = null
Organize Imports (Ctrl+Shift+O) should remove "import foo.Bar.Baz" because the reference is qualified by the outer class.
The text was updated successfully, but these errors were encountered:
Fix for #923: don't retain imports of inner types in qualified type name
4a84411
eric-milles
No branches or pull requests
Consider the following:
Organize Imports (Ctrl+Shift+O) should remove "import foo.Bar.Baz" because the reference is qualified by the outer class.
The text was updated successfully, but these errors were encountered: