Flash/jsp/mysql and double spacing

So for some reason flash is double spacing my db content.
I’m not sure why either.

When i go to my jsp page directly it looks like this.

myMonth=blah,blah,blah,blah,blah,blah,blah,blah,blah,blah,blah

there isnt any spaces, just a string. when i import it into flash there is a double/triple space between every “blah”.

here is my flash code.

does anyone know why im getting double spaces?


var dateVars = new LoadVars();
dateVars.onLoad = function(ok) {
if (ok) {
text1.text = dateVars.myMonth;
}
};
dateVars.load("[http://localhost:8080/testingground/instructionslist.jsp](http://localhost:8080/testingground/instructionslist.jsp)");