mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 17:56:55 +07:00
GitOrigin-RevId: a7b8bcccb1e4bf4fb5ea35975f12767dae882813
7 lines
175 B
Java
7 lines
175 B
Java
public class Test {
|
|
void test(boolean condition) {
|
|
<selection>String s = "42";</selection>
|
|
if (condition) s = "new";
|
|
System.out.println(s);
|
|
}
|
|
} |