mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 09:46:39 +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
11 lines
328 B
Java
11 lines
328 B
Java
import module my.source.moduleB;
|
|
<warning descr="Unused import statement">import module my.source.moduleC;/*unused*/</warning>
|
|
<warning descr="Unused import statement">import module my.source.moduleE;/*unused*/</warning>
|
|
|
|
final class Main {
|
|
public static void main(String[] args) {
|
|
new Sql();
|
|
new Transaction();
|
|
}
|
|
}
|