mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
IDEA-205137 `Replace Switch with If` produce exceptions IDEA-205122 Unwrap switch fails with exception
7 lines
87 B
Java
7 lines
87 B
Java
// "Unwrap 'switch'" "true"
|
|
public class One {
|
|
void n() {
|
|
if (true) {
|
|
}
|
|
}
|
|
} |