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 Final
            Reporter: Cédrik LIME
            Priority: Minor


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