mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 09:47:51 +07:00
- rename title to be clear GitOrigin-RevId: 1c68fe4bc08065136a827a9ef1c7fd949799e7f2
10 lines
263 B
Java
10 lines
263 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);
|
|
Arrays.binarySearch(baz, "1");
|
|
}
|
|
} |