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
With this set as the compiler config script, organize imports results in the addition of the synthetic import to the source.
withConfig(configuration) { imports { staticStar 'java.util.concurrent.TimeUnit' } }
Organize imports on:
class C { }
results in:
import static java.util.concurrent.TimeUnit.* class C { }
The text was updated successfully, but these errors were encountered:
Same applied to aliased imports (static and non-static).
Sorry, something went wrong.
Fix for issue #430: remove alias, static and static-star default imports
42a31b1
during Organize Imports action
7cd579e
eric-milles
No branches or pull requests
With this set as the compiler config script, organize imports results in the addition of the synthetic import to the source.
withConfig(configuration) { imports { staticStar 'java.util.concurrent.TimeUnit' } }
Organize imports on:
results in:
The text was updated successfully, but these errors were encountered: