[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: Re: [Subclipse-users] Exception while drawing graph

From: Stephen Elsemore <selsemore_at_collab.net>
Date: Fri, 5 Aug 2011 06:28:13 -0700 (PDT)

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

This is an archived mail posted to the Subclipse Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.