mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 01:41:11 +07:00
GitOrigin-RevId: 04d1cbdcac5721fca2817ecb4e5d20c6ebba191e
10 lines
180 B
Java
10 lines
180 B
Java
public class Test {
|
|
void test(boolean condition) {
|
|
<selection>foo("one");</selection>
|
|
foo("one");
|
|
foo("two");
|
|
}
|
|
|
|
void foo(String name) {
|
|
}
|
|
} |