Hi there,
I created a program that contains linked lists that are passed various methods. While this works just fine in Java... a style checker program we have to use doesn't like it
It says: Declaring variables, return values or parameters of type 'LinkedList' is not allowed.
If I declare them as simply List then I don't have access to the methods I want. What should I do?