mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
20 lines
271 B
Java
20 lines
271 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class S {
|
|
{
|
|
String s;
|
|
try {
|
|
s = newMethod();
|
|
} finally {
|
|
}
|
|
System.out.print(s);
|
|
}
|
|
|
|
@NotNull
|
|
private String newMethod() {
|
|
String s;
|
|
s = "";
|
|
return s;
|
|
}
|
|
}
|