The intention removes the comment(s) above the if in the else-branch. It should somehow try to preserve them, or probably don't show up at all in such a case.
void test() {
if (foo) {
} else {
// blubb
if (bar) {
}
}
}
Description
The intention removes the comment(s) above the if in the else-branch. It should somehow try to preserve them, or probably don't show up at all in such a case.
void test() {
if (foo) {
} else {
// blubb
if (bar) {
}
}
}