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