mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:08:53 +07:00
11 lines
260 B
Java
11 lines
260 B
Java
import static java.lang.String.format;
|
|
import static java.lang.String.valueOf;
|
|
import static java.lang.String.copyValueOf;
|
|
|
|
class OptimizeImport {
|
|
public static void main(String[] args) {
|
|
format("foo");
|
|
valueOf(1);
|
|
copyValueOf(new char[0]);
|
|
}
|
|
} |