2-dimensional arrayList?
Hi,
can anyone tell me what is wrong with the following code snippet?
List<List><String>> list = new ArrayList<List><String>>();
List<String> l = new ArrayList<String>();
list.add(l);
When I try to compile I get an error for the third line: <identifier> expected.
P.S.: The closing '>' signs after "<List" are being added automatically.
I don't know how to suppress that.>

