Skip to content

Commit

Permalink
Fixing command name.
Browse files Browse the repository at this point in the history
  • Loading branch information
lahodaj committed May 9, 2024
1 parent 2444c44 commit 11a9566
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ private static List<CodeAction> convertFixes(ErrorDescription err, Consumer<Exce
for (Fix f : fixes) {
if (f instanceof IncompleteClassPath.ResolveFix) {
// We know that this is a project problem and that the problems reported by ProjectProblemsProvider should be resolved
CodeAction action = new CodeAction(f.getText(), new Command(f.getText(), "nbls.java.project.resolveProjectProblems"));
CodeAction action = new CodeAction(f.getText(), new Command(f.getText(), "nbls.project.resolveProjectProblems"));
result.add(action);
}
if (f instanceof org.netbeans.modules.java.hints.errors.EnablePreview.ResolveFix) {
Expand Down

0 comments on commit 11a9566

Please sign in to comment.