Applies to: Description:Warnings that are displayed when generics are not safely used. Cause:Passed parameter issue: Vector v = new Vector(); Hashtable ht = new Hashtable();
JAVA-API lrm-00118: syntax error at '=' at the end of input
Assign the correct parameters. Example is the following: Vector v = new Vector(); Hashtable> ht = new Hashtable>();
Assign the correct parameters. Example is the following: v = new Vector (); > ht = new Hashtable >();
Vector
Hashtable