On 11.07.2016 18:55, Robin Stevens wrote:
However, that would cause an inconsistency with other operating systems.
ok, but then let's simplify it:

remove this line:
     sb.append(strings[0]);

and start cycle from 0:
for(int i = 0; i < strings.length; i++) {
   sb.append(strings[i]);
   sb.append(separator);
}

Reply via email to