mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
17 lines
378 B
Java
17 lines
378 B
Java
|
|
import static java.util.Arrays.asList;
|
|
import static java.util.Arrays.sort;
|
|
<warning descr="Unused import statement">import static java.util.Arrays.binarySearch;</warning>
|
|
|
|
public class StaticImports {
|
|
{
|
|
asList(new Object[]{});
|
|
}
|
|
|
|
void method() {
|
|
sort(new long[0]);
|
|
// sort< error descr="Cannot resolve method 'sort()'">()< /error>;
|
|
}
|
|
|
|
}
|