StringArray::addTokens bug?

After a lot of pain, I’ve just finished porting our software form Juce 1.52 to current git trunk.
I thinks that I discover a regression:

It seem’s that int juce 1.52

StringArray::addTokens("4::", ":.", "");

return a string array of 3 items : “4”, “”, ""
And now with last git branch, it return a string array of two items: “4”, “”

Ah! Thanks very much!

Looks like my unit tests didn’t test that method - I’ll get that sorted out right away (will be in the modules branch, where I’m working at the moment).