mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 4c59710e2304288ad4465a92ec36bff633bd661e
14 lines
216 B
Java
14 lines
216 B
Java
public class Test {
|
|
void test(boolean condition) {
|
|
extracted();
|
|
foo("one");
|
|
foo("two");
|
|
}
|
|
|
|
private void extracted() {
|
|
foo("one");
|
|
}
|
|
|
|
void foo(String name) {
|
|
}
|
|
} |