mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 05:20:30 +07:00
10 lines
165 B
Java
10 lines
165 B
Java
class Test {
|
|
public Test(String s) { }
|
|
|
|
public Test foo(String path) {
|
|
Test smth = new Test(path);
|
|
if (path == null) return null;
|
|
return smth;
|
|
}
|
|
}
|