Return Vector object from composing class

I have a CSV reader class that parses a CSV file…

1,11.15126526
2,11.28306635
3,10.78296071
4,10.79878325

The CSV reader class works and produces a Vector.<Point>

However the container class (which includes an instance of the CSVFile class)
needs to access the resultant Vector.

Whenever I ‘return’ the Vector.<Point> to the container via a CSV method it is always empty…

I don’t know if its something to do with the size of the Vector<> or what?

Can somebody please help?