mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
- new options are added - changes for optimize imports GitOrigin-RevId: 82b0223f9e7e2972d13ab182ea651cdccd28a5d3
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();
|
|
}
|
|
} |