mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 18:14:57 +07:00
04df6bad09
Fixes IDEA-194648 Simpler expression auto-fix results in different code
6 lines
94 B
Java
6 lines
94 B
Java
// "Simplify" "true"
|
|
class Test {
|
|
int test(int a, int b) {
|
|
return true<caret>?a:b;
|
|
}
|
|
} |