mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 01:06:54 +07:00
- tests - optimize imports - ReplaceOnDemandImportIntention supports module imports GitOrigin-RevId: 228135179fc26f44064dd196ae70326fd91fb3ee
8 lines
188 B
Java
8 lines
188 B
Java
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class beforeSimpleModuleImport {
|
|
public static void main(String[] args) {
|
|
List<String> a = new ArrayList<>();
|
|
}
|
|
} |