You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A choice to get this result or thereabout should be offered:
switch (t) {
caseAa -> {}
caseBb -> {}
}
Note also that currently the default branch is added a switch statement (with default: break) rather than an expression (default -> {}), which users might not want as the default completion.
The text was updated successfully, but these errors were encountered:
Note also that currently the default branch is added a switch statement (with default: break) rather than an expression (default -> {}), which users might not want as the default completion.
As this is a quickfix, not completion, and since quickfixes are implemented in jdt.ui, could you please file a separate ticket there? TIA
Original issue here: https://bugs.eclipse.org/bugs/show_bug.cgi?id=576204. Still relevant in 4.31.
Concrete example:
A choice to get this result or thereabout should be offered:
Note also that currently the default branch is added a switch statement (with
default: break
) rather than an expression (default -> {}
), which users might not want as the default completion.The text was updated successfully, but these errors were encountered: