Skip to content

Commit 29fa86c

Browse files
authored
Filter 'sun.*' packages out of completion type results. (#1731)
- Fixes eclipse-jdtls/eclipse.jdt.ls#1613 Signed-off-by: Roland Grunberg <rgrunber@redhat.com>
1 parent 84ee7c9 commit 29fa86c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,8 @@
379379
"description": "Defines the type filters. All types whose fully qualified name matches the selected filter strings will be ignored in content assist or quick fix proposals and when organizing imports. For example 'java.awt.*' will hide all types from the awt packages.",
380380
"default": [
381381
"java.awt.*",
382-
"com.sun.*"
382+
"com.sun.*",
383+
"sun.*"
383384
],
384385
"scope": "window"
385386
},

0 commit comments

Comments
 (0)