Skip to content

Commit dc29abe

Browse files
committed
switched to class symbol kind for bean document symbols
1 parent 37e70aa commit dc29abe

File tree

1 file changed

+1
-1
lines changed
  • headless-services/commons/commons-lsp-extensions/src/main/java/org/springframework/ide/vscode/commons/protocol/spring

1 file changed

+1
-1
lines changed

headless-services/commons/commons-lsp-extensions/src/main/java/org/springframework/ide/vscode/commons/protocol/spring/Bean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public DocumentSymbol getDocumentSymbol() {
111111
DocumentSymbol symbol = new DocumentSymbol();
112112

113113
symbol.setName(this.symbolLabel);
114-
symbol.setKind(SymbolKind.Interface);
114+
symbol.setKind(SymbolKind.Class);
115115
symbol.setRange(this.location.getRange());
116116
symbol.setSelectionRange(this.location.getRange());
117117

0 commit comments

Comments
 (0)