hanki.dev

Disable wildcard imports in IntelliJ IDEA

IDEA automatically bundles imports with an asterisk (*). You can't directly disable this, but you can increase the class count threshold so high it will never be used.

File -> Settings -> Editor -> Code Style -> Java -> Imports
Class count to use import with '*':			999
Names count to use static import with '*':		999

#idea #java