mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +07:00
10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
class Main {
|
|
|
|
public static void main(String[] args) {
|
|
List<Object[]> l1 = Arrays.asList(new Object[][]{{""}, {""}});
|
|
}
|
|
}
|