rajat banerjee
rajat banerjee

Reputation: 1294

How to get IntelliJ From making annoying blue popups?

On Mac OSX running the latest JDK, my IntelliJ 9.0.3 pops up these incredibly annoying and persistent windows:

annoying-intellij

This stuff compiles and runs fine, the JDK is definitely operational on this machine. It should be a java.util.string, not some other apache string. what is this supposed to be, and how do i get rid of it? Thanks!

Upvotes: 7

Views: 1178

Answers (3)

Agoston Horvath
Agoston Horvath

Reputation: 791

Found it! In intellij idea 14, go to

settings -> editor -> general -> auto import, and untick 'show import popup', under the java/kotlin/xml/... section.

That will fix it.

Upvotes: 6

Ricky Clarkson
Ricky Clarkson

Reputation: 2939

My guess is that you have not configured the Java SDK that your project is using.

File -> Project Structure -> Project -> Project SDK, choose one, make sure it doesn't show in red.

Upvotes: 3

Gamlor
Gamlor

Reputation: 13258

You can ignore certain packages & classes from the import-popup.

See the answer here: Limiting IntelliJ IDEA import suggestions on completion

Upvotes: 1

Related Questions