mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 07:57:19 +07:00
GitOrigin-RevId: f0ae37f2fcdce9b5536e3b52e6a609e093490c69
9 lines
224 B
Java
9 lines
224 B
Java
package staticImportCanBeUsed;
|
|
|
|
import java.util.Arrays;
|
|
|
|
class Foo {
|
|
void test(String[] baz) {
|
|
<warning descr="Static import can be used based on the auto-import table">Arrays<caret></warning>.sort(baz);
|
|
}
|
|
} |