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
I was using the extension for VSCode, and while it provides some helpful hints, I noticed that it lacks several features available in IntelliJ IDEA and other IDEs. One such feature is the suggestion to refactor traditional switch statements into enhanced switch expressions:
switch (expression) {
case 1:
System.out.println("case 1");
break;
case 2:
System.out.println("case 2");
break;
default:
System.out.println("case 3");
break;
}
The extension doesn't suggest refactoring it into the enhanced switch expression, which is a useful feature in many modern IDEs. There are other suggestions that even adding SolarQube it doesn't gets so good as some other IDEs suggestions.
I believe adding support for this kinds of features would significantly improve the developer experience in VSCode when using this extension.
The text was updated successfully, but these errors were encountered:
I was using the extension for VSCode, and while it provides some helpful hints, I noticed that it lacks several features available in IntelliJ IDEA and other IDEs. One such feature is the suggestion to refactor traditional switch statements into enhanced switch expressions:
The extension doesn't suggest refactoring it into the enhanced switch expression, which is a useful feature in many modern IDEs. There are other suggestions that even adding SolarQube it doesn't gets so good as some other IDEs suggestions.
I believe adding support for this kinds of features would significantly improve the developer experience in VSCode when using this extension.
The text was updated successfully, but these errors were encountered: