Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance Hints and Suggestions #3890

Open
FelipeKobra opened this issue Dec 10, 2024 · 0 comments
Open

Enhance Hints and Suggestions #3890

FelipeKobra opened this issue Dec 10, 2024 · 0 comments

Comments

@FelipeKobra
Copy link

FelipeKobra commented Dec 10, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant