mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
17 lines
553 B
Java
17 lines
553 B
Java
import static java.util.Arrays.asList;
|
|
import static java.util.Arrays.sort;
|
|
<warning descr="Unused import statement">import static java.lang.String.<error descr="'serialVersionUID' has private access in 'java.lang.String'">serialVersionUID</error>;</warning>
|
|
<warning descr="Unused import statement">import static java.util.Arrays.binarySearch;</warning>
|
|
|
|
class StaticImports {
|
|
{
|
|
asList(new Object[]{});
|
|
}
|
|
|
|
void method() {
|
|
sort(new long[0]);
|
|
// sort< error descr="Cannot resolve method 'sort()'">()< /error>;
|
|
}
|
|
|
|
}
|