[ http://nagoya.apache.org/jira/browse/XALANJ-896?page=history ]
Henry Zongaro updated XALANJ-896:
---------------------------------
Assign To: (was: Xalan Developers Mailing List)
type: Improvement (was: Bug)
Description:
Using StringBuffer's in toString method will improve performance of this method
i.e.
StringBuffer sBuffer = new StringBuffer(256);
sBuffer.append("{").append(_namespaceURI).append("}").append_localName);
return sBuffer.toString();
was:
Using StringBuffer's in toString method will improve performance of this method
i.e.
StringBuffer sBuffer = new StringBuffer(256);
sBuffer.append("{").append(_namespaceURI).append("}").append_localName);
return sBuffer.toString();
Environment:
Operating System: All
Platform: All
was:
Operating System: All
Platform: All
Priority: Minor
Bugzilla Id: (was: 7058)
> QName.toString() should use StringBuffer concat to improve perf
> ---------------------------------------------------------------
>
> Key: XALANJ-896
> URL: http://nagoya.apache.org/jira/browse/XALANJ-896
> Project: XalanJ2
> Type: Improvement
> Components: Other
> Versions: 2.1.0
> Environment: Operating System: All
> Platform: All
> Reporter: Dave Armlin
> Priority: Minor
>
> Using StringBuffer's in toString method will improve performance of this
> method
> i.e.
> StringBuffer sBuffer = new StringBuffer(256);
> sBuffer.append("{").append(_namespaceURI).append("}").append_localName);
> return sBuffer.toString();
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://nagoya.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]