Skip to content

LukasLeppich/vscode-java-quickfix-bug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

quickfix-bug

The SomePage.java class has an Unhandled exception type ExecutionException error.

If you use the QuickFix action Add throws declarat... the java extension will remove the fragment name of the second Template specification and the escaped backslashes from the string.

Before executing the QuickFix:

    String someString = "Escaped\\Test\\Path";

    @CheckedTemplate
    static class Templates {
        public static native TemplateInstance page();
        public static native TemplateInstance page$content();
    }

After performing the QuickFix:

    String someString = "Escaped\Test\Path";

    @CheckedTemplate
    static class Templates {
        public static native TemplateInstance page();
        public static native TemplateInstance page();
    }

About

Reproducer for a bug in the vscode java extension

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published