mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
Fixes IDEA-353352 "Remove unused imports" does nothing for static imports GitOrigin-RevId: ae20983342012414568af9ca68db67994832443c
8 lines
119 B
Java
8 lines
119 B
Java
// "Remove unused imports" "true-preview"
|
|
import java.util.Set;
|
|
|
|
class Main {
|
|
void test(Set<String> set) {
|
|
|
|
}
|
|
} |