mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 13:45:34 +07:00
6bd95c28cc
GitOrigin-RevId: 93f5b6e974986efb0de86566875d77dc821ffea5
8 lines
123 B
Java
8 lines
123 B
Java
// "Remove statement" "true"
|
|
class Test {
|
|
void test(int x) {
|
|
if(x > -5) {
|
|
System.out.println("ok");
|
|
}
|
|
}
|
|
} |