[ http://issues.apache.org/jira/browse/EMAIL-60?page=all ]

Ben Speakmon updated EMAIL-60:
------------------------------

    Attachment: HtmlEmail.patch

Here's a better patch that calculates the exact size of the StringBuffer. Also, 
it turns the constant strings into static constants.

> Performance in HtmlEmail#setMsg(String msg)
> -------------------------------------------
>
>                 Key: EMAIL-60
>                 URL: http://issues.apache.org/jira/browse/EMAIL-60
>             Project: Commons Email
>          Issue Type: Improvement
>    Affects Versions: 1.0
>            Reporter: Cédrik LIME
>            Priority: Minor
>         Attachments: HtmlEmail.patch
>
>
> The method HtmlEmail.setMsg(String) builds an HTML message from a text 
> message using a StringBuffer. This StringBuffer should be correctly sized 
> according to inputted message, to avoid unnecessary resizing:
> 138c138
> <             new StringBuffer()
> ---
> >             new StringBuffer(msg.length() + 37)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to