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

Re: [Subclipse-users] Exception while drawing graph

From: John Beranek <john_at_redux.org.uk>
Date: Fri, 05 Aug 2011 10:56:45 +0100

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) + "...";
+ }

Cheers,

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=2809662
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subclipse.tigris.org].

Received on 2011-08-05 11:57:02 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.