I'm trying to make a 2-Dimensional LinkedList in Java and this is what I have come up with:
LinkedList<LinkedList<String>> rows = new LinkedList()<LinkedList<String>>;
Eclipse keeps giving me the following error at the final two alligator brackets:
Syntax error on token ">>", Expression expected after this token
What do I need to do to fix it? What is this error? and Why am I getting it?