Hi,
I've got the following code:
import java.util.*;
public class Group {
public static void main(String[] args) {
ArrayList<Integer> list = new ArrayList<Integer>();
}
}
Eclipse (3.0.0) complains about the ArrayList declaration: syntax error on token "(", on both tokens "<", and then on token "=". I'm using java 1.5.0_07.
What am I doing wrong?
Thanks, regards, Miel.