[
https://issues.apache.org/jira/browse/EMAIL-60?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Henri Yandell closed EMAIL-60.
------------------------------
Resolution: Fixed
Fix Version/s: 1.1
svn ci -m "Applying performance enhancement requested in EMAIL-60"
Sending src/java/org/apache/commons/mail/HtmlEmail.java
Transmitting file data .
Committed revision 501739.
> Performance in HtmlEmail#setMsg(String msg)
> -------------------------------------------
>
> Key: EMAIL-60
> URL: https://issues.apache.org/jira/browse/EMAIL-60
> Project: Commons Email
> Issue Type: Improvement
> Affects Versions: 1.0
> Reporter: Cédrik LIME
> Priority: Minor
> Fix For: 1.1
>
> 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.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]