mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
- new options are added - changes for optimize imports (cherry picked from commit 82b0223f9e7e2972d13ab182ea651cdccd28a5d3) GitOrigin-RevId: 99f0276e1d9464f75f5bbce91ad09727582d208b
10 lines
175 B
Java
10 lines
175 B
Java
import module my.source.moduleA;
|
|
import module my.source.moduleB;
|
|
import my.source.moduleA.Imported;
|
|
|
|
class ModuleImportWithPackageImport {
|
|
Imported module;
|
|
A a;
|
|
B b;
|
|
}
|