I have the following line of code :
StringUtils.abbreviate( StringUtils.removeIgnorableCharacters(message.getBody()), 500 )
It is supposed to format the body of message for a RSS feed.
However, passing a message with a body of over 500 characters result in "..." .
The removeIgnorableCharacters() returns the correct body.
Is it reproduceable ?
Thanks,