Skip to content

Commit 77cc4ec

Browse files
committed
Adjust labels
1 parent 9c9d4c3 commit 77cc4ec

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/reconcilers/ImplicitWebAnnotationNamesReconciler.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030

3131
public class ImplicitWebAnnotationNamesReconciler implements JdtAstReconciler {
3232

33-
private static final String PROBLEM_LABEL = "Implicit Web Annotation Name";
34-
private static final String FIX_LABEL = "Remove Implicit Web Annotation Name";
35-
private static final String FIX_LABEL_PLURAL = "Remove Implicit Web Annotation Names";
33+
private static final String PROBLEM_LABEL = "Unnecessary path variable definition";
34+
private static final String FIX_LABEL = "Remove implicit eeb annotation name";
35+
private static final String FIX_LABEL_PLURAL = "Remove implicit web annotation names";
3636

3737
private static final Set<String> PARAM_ANNOTATIONS = new HashSet<>(
3838
Arrays.asList(

headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/reconcilers/NoAutowiredOnConstructorReconciler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636

3737
public class NoAutowiredOnConstructorReconciler implements JdtAstReconciler {
3838

39-
private static final String PROBLEM_LABEL = "Unnecessary @Autowired";
40-
private static final String FIX_LABEL = "Remove Unnecessary @Autowired";
39+
private static final String PROBLEM_LABEL = "Unnecessary `@Autowired` annotation";
40+
private static final String FIX_LABEL = "Remove unnecessary `@Autowired` annotation";
4141

4242
private QuickfixRegistry registry;
4343

0 commit comments

Comments
 (0)