<AWT Dev> [8] Review request JDK-8160941: [macosx]"text/uri-list" dataflavor concats the first two strings
Mikhail Cherkasov
mikhail.cherkasov at oracle.com
Mon Jul 11 16:08:43 UTC 2016
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);
}
More information about the awt-dev
mailing list