Is there a way to turn off wildcard import like "import javax.persistence.*;" ?
Intellij 12.1.4 usually imports exactly the class I need, for example:
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Table;
But at some point it replaces all the individual import statements with:
import javax.persistence.*;
Is this behavior controlled by a setting anywhere?