Skip to content

Commit 4eeaf73

Browse files
committed
Fix inherited document symbols to collect interfaces as well.
- Also fix typo in CHANGELOG Signed-off-by: Roland Grunberg <[email protected]>
1 parent b5b3575 commit 4eeaf73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## 1.40.0 (February 27nd, 2025)
3+
## 1.40.0 (February 27th, 2025)
44
* enhancement - Support for inherited document symbols. See [#2342](https://github.com/redhat-developer/vscode-java/issues/2342).
55
* enhancement - Introduce approximately 15 new quick fixes. See [JLS#3368](https://github.com/eclipse-jdtls/eclipse.jdt.ls/pull/3368), [JLS#3372](https://github.com/eclipse-jdtls/eclipse.jdt.ls/pull/3372).
66
* enhancement - Introduce quick assist & cleanup converting a pattern-instanceof-if-chain to a switch statement. See [#3951](https://github.com/redhat-developer/vscode-java/pull/3951).

src/outline/extendedOutlineQuickPick.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class ExtendedOutlineQuickPick {
6161
range: s.range
6262
};
6363
quickPickItems.push(item);
64-
if (icon === 'symbol-class') {
64+
if (icon === 'symbol-class' || icon === 'symbol-interface') {
6565
const items: QuickPickItem[] = s.children.map(s => ({
6666
label: `$(${getLThemeIcon(s.kind).id}) ${s.name}`,
6767
// custom quick pick has automatic space between label & description

0 commit comments

Comments
 (0)