mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
14 lines
289 B
Java
14 lines
289 B
Java
class Foo {
|
|
private void bar() {
|
|
String text = null;
|
|
try {
|
|
<selection>text = getString();</selection>
|
|
}
|
|
catch(Exception e) {
|
|
System.out.println(text);
|
|
}
|
|
}
|
|
private void getString() {
|
|
return "hello";
|
|
}
|
|
} |