[java-import] IDEA-364508 support optimize imports

- new options are added
- changes for optimize imports

GitOrigin-RevId: 82b0223f9e7e2972d13ab182ea651cdccd28a5d3
This commit is contained in:
Mikhail Pyltsin
2024-12-09 19:11:04 +01:00
committed by intellij-monorepo-bot
parent 042c85d839
commit ab52fbdf4e
33 changed files with 693 additions and 40 deletions

View File

@@ -0,0 +1,9 @@
import module my.source.moduleA;
import module my.source.moduleB;
import my.source.moduleA.Imported;
class ModuleImportWithPackageImport {
Imported module;
A a;
B b;
}