So when I compile, everything will compile just fine.
When I go to run the program, I get this error
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
at ClientForNoDupCollection.main(ClientForNoDupCollection.java:20)
I go to look at line 20(actually 19-21)
public static void main(String args[]) {
File file = new File(args[0]);
Scanner cReader = null;
I'm attempting to be able to do command line execution of the files.
I'm not 100% sure where I went wrong there.