mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
263 B
Plaintext
12 lines
263 B
Plaintext
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
|
|
class Launcher<T> {
|
|
{
|
|
try {
|
|
FileInputStream f = new FileInputStream("" != null ? new File("") : null);
|
|
catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
} |