mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
IDEA-205137 `Replace Switch with If` produce exceptions IDEA-205122 Unwrap switch fails with exception
8 lines
99 B
Java
8 lines
99 B
Java
// "Replace 'switch' with 'if'" "true"
|
|
class Test {
|
|
void m() {
|
|
if (0 == 1) {
|
|
}
|
|
|
|
}
|
|
} |