Hello,
I am using a Vector to store data of type int and keep getting these warnings at runtime ..
Note: C:\Java\prog1.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Recompiling as specified above yields:
warning: [unchecked] unchecked call to add(int,E) as a member of the raw type java.util.Vector
this.add(index,item);
Although this doesn't keep my prog from functioning corectly, I'd like to correct the issue. Any ideas?
Thanks,
rgarner04