mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
14 lines
251 B
Java
14 lines
251 B
Java
// "Remove 'if' statement" "true-preview"
|
|
class X {
|
|
void f() {
|
|
int i = 2;
|
|
if (false<caret> !=false) {
|
|
//sdf
|
|
}
|
|
else {
|
|
// begin
|
|
int o = 0; //mid
|
|
// end
|
|
}
|
|
}
|
|
} |