64K = 65536 bytes, so any of these would fix the problem.
> On 05/08/11 10:56, John Beranek wrote:
> > On 05/08/11 00:29, Stephen Elsemore wrote:
> >> Hi John,
> >>
> >> Please see:
> >>
> >> http://subclipse.tigris.org/issues/show_bug.cgi?id=1289
> >
> > Wow! What a speedy response and fix - thanks!
> >
> > + if (message.length() > 64000) {
> > + message = message.substring(0, 64397) + "...";
> > + }
> >
> > However, don't you mean:
> >
> > + if (message.length() > 64000) {
> > + message = message.substring(0, 63397) + "...";
> > + }
>
> Erm,
>
> + if (message.length() > 64000) {
> + message = message.substring(0, 63997) + "...";
> + }
>
> even!!
>
> John.
>
> --
> John Beranek To generalise is to be an idiot.
> http://redux.org.uk/ -- William Blake
------------------------------------------------------
http://subclipse.tigris.org/ds/viewMessage.do?dsForumId=1047&dsMessageId=2809690
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subclipse.tigris.org].
Received on 2011-08-05 15:28:18 CEST