mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
- new options - don't highlight such imports as unused - delete imports of nested modules - preserve high-level modules during 'optimize import' GitOrigin-RevId: 3728f41a934f320767caac0a643a5869ccc84bcc
22 lines
338 B
Java
22 lines
338 B
Java
import module java.base;
|
|
|
|
import one.Super;
|
|
import two.*;
|
|
import three.*;
|
|
|
|
class DoNotInsertImportForClassVisibleByInheritanceWithModuleConflict implements Super {
|
|
One one;
|
|
Two two;
|
|
Three three;
|
|
Four four;
|
|
Five five;
|
|
Six six;
|
|
Seven seven;
|
|
Eight eight;
|
|
Nine nine;
|
|
Ten ten;
|
|
|
|
Result x() {
|
|
return new Result();
|
|
}
|
|
} |