We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cc632f commit f4bbb6cCopy full SHA for f4bbb6c
vscode-extensions/vscode-spring-boot/lib/explorer/nodes.ts
@@ -39,15 +39,15 @@ export class StereotypedNode extends SpringNode {
39
case "fa-named-interface": // specify the case
40
return new ThemeIcon("symbol-interface");
41
case "fa-package":
42
- return new ThemeIcon("package");
+ return new ThemeIcon("symbol-constant");
43
case "fa-stereotype":
44
- return new ThemeIcon("symbol-class");
+ return new ThemeIcon("mention");
45
case "fa-application":
46
return new ThemeIcon("folder");
47
case "fa-method":
48
return new ThemeIcon("symbol-method");
49
default:
50
- return new ThemeIcon("symbol-object");
+ return new ThemeIcon("symbol-class");
51
}
52
53
0 commit comments