September 30th, 1999, 03:46 PM
I have the following imports on my java file.
import java.awt.*;
import java.util.*;
private List list;
When I try to compile, I'm getting a ambigious class definition for list error.
How do I solve the problem ? I need to use both the java.util and java.awt.
import java.awt.*;
import java.util.*;
private List list;
When I try to compile, I'm getting a ambigious class definition for list error.
How do I solve the problem ? I need to use both the java.util and java.awt.