mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 388e5c5195bda88b61526f0a393ed9d81ec18830
15 lines
237 B
Java
15 lines
237 B
Java
// "Extract common part removing branch" "true"
|
|
|
|
class EmptyStatements {
|
|
|
|
private void refactor() {
|
|
if (new java.util.Random().nextBoolean()) {
|
|
foo();
|
|
}
|
|
bar();
|
|
}
|
|
|
|
private void foo() {}
|
|
|
|
private void bar() {}
|
|
} |