mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
- new options are added - changes for optimize imports (cherry picked from commit 82b0223f9e7e2972d13ab182ea651cdccd28a5d3) GitOrigin-RevId: 99f0276e1d9464f75f5bbce91ad09727582d208b
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();
|
|
}
|
|
} |