mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
Fixes IDEA-360579 Inline Method creates uncompilable code GitOrigin-RevId: cd73e3e730b8cef37f4a26235a2ab3db812f02ff
15 lines
267 B
Plaintext
15 lines
267 B
Plaintext
// IDEA-360579
|
|
class Hades {
|
|
void persephone(boolean xyz, int param) {
|
|
if(xyz) {
|
|
boolean result = false;
|
|
if (param >= 10) {
|
|
result = param != 20;
|
|
}
|
|
if (!result) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
}
|
|
|
|
} |