mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
- new options are added - changes for optimize imports GitOrigin-RevId: 82b0223f9e7e2972d13ab182ea651cdccd28a5d3
11 lines
169 B
Java
11 lines
169 B
Java
import module my.source.moduleB;
|
|
import module my.source.moduleA;
|
|
|
|
import my.source.moduleA.*;
|
|
|
|
class ModuleImportWithPackageImport {
|
|
Imported module;
|
|
A a;
|
|
B b;
|
|
}
|