Files
openide/java/java-tests/testData/codeInsight/highlight/remove_imports/afterSimple.java
Tagir Valeev 2909ce4932 [java-intentions] RemoveAllUnusedImportsFix: support static imports; tests
Fixes IDEA-353352 "Remove unused imports" does nothing for static imports

GitOrigin-RevId: ae20983342012414568af9ca68db67994832443c
2024-06-28 11:03:18 +00:00

8 lines
119 B
Java

// "Remove unused imports" "true-preview"
import java.util.Set;
class Main {
void test(Set<String> set) {
}
}