I have the following
in my imports:
import
java.util.HashMap;
import
java.util.Iterator;
I add code to a
method that uses an ArrayList. The IDEA is great by offering to add ArrayList to
my import statements.
How do I prevent it
from turning my imports into:
import
java.util.*;
but instead do
this:
import
java.util.HashMap;
import
java.util.Iterator;
import
java.util.ArrayList;
Thanks,
Hans
Speijer
