mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
16 lines
304 B
Java
16 lines
304 B
Java
import java.util.jar.JarFile;
|
|
|
|
class MyTest {
|
|
|
|
Object field = Class.forName("");
|
|
Object o = Class.forName("").getName();
|
|
|
|
void test() {
|
|
Runnable r = () -> new JarFile("");
|
|
r = () -> {new JarFile("");};
|
|
Class.forName("");
|
|
Object j = new JarFile("");
|
|
}
|
|
}
|
|
|