You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Autoimport does not work when you have packages that have the same class name.
For example, when typing List<String> a = new List<String>(), there will be errors because it doesn't know whether to resolve against java.util.List or java.awt.List.
If I know in my project I never use the java.awt package, can we add a setting to ignore that from the autocomplete/autoimport feature?
The text was updated successfully, but these errors were encountered:
Guys I am having problem with 'javax.swing.*' and related GUI library in VSCode, other thread explain I need to exclude it from my settings.json but nothing related to 'java.completion.filteredTypes' is placed as I have clean uninstall VSCode (The previous extensions and settings, this is a fresh install).
is there any related thread that mention about GUI related libraries fixes?
Autoimport does not work when you have packages that have the same class name.
For example, when typing
List<String> a = new List<String>()
, there will be errors because it doesn't know whether to resolve againstjava.util.List
orjava.awt.List
.If I know in my project I never use the
java.awt
package, can we add a setting to ignore that from the autocomplete/autoimport feature?The text was updated successfully, but these errors were encountered: