Vectors.<T> Broken by Format Code
Whenever I want to use a Vector.<T> I can't because if I use the "Format Code" button it breaks it! It will change:
var myVector: Vector.<T> = new Vector.<T>();
into
var myVector: Vector. < T > = new Vector. < T > ();
and when I compile it, it results in "Error 1084: Syntax Error: expecting identifier before lessthan" and "Error 1086: Syntax Error: expecting semicolon before greaterthan" (removing the space after "." fixes these errors)
I CANNOT find an answer to this problem, surely I am not the only one who has experienced this??? I've been able to deal with this by just using Arrays all the time but now I am required to use a Vector and now every time I format my code to clean it up I can to correct this! I desperately need a fix for this problem!
