Haven&#39;t tried it. I just know that when coding from scratch, I&#39;d used StringBuilders. <div><br></div><div>And also, given I&#39;m designing an app that will be used on the web by different users, I&#39;d like to have it as fast as possible.</div>
<div><br></div><div>Chris</div><div><br><br><div class="gmail_quote">On 9 January 2011 13:35, DM Smith <span dir="ltr">&lt;<a href="mailto:dmsmith@crosswire.org">dmsmith@crosswire.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Try a more recent copy. :)<br>
<br>
In Him,<br>
DM<br>
<br>
Cent from my fone so theer mite be tipos. ;)<br>
<div><div></div><div class="h5"><br>
On Jan 9, 2011, at 6:14 AM, Chris Burrell &lt;<a href="mailto:chris@burrell.me.uk">chris@burrell.me.uk</a>&gt; wrote:<br>
<br>
&gt; Hi All<br>
&gt;<br>
&gt; In my not-so-recent version of JSword I count 133 matches of StringBuffer and 0 matches to StringBuilder<br>
&gt;<br>
&gt; Str]ingBuilder is much faster, because it is not synchronised / thread-safe. So, everytime StringBuffer is declared in a local method, we can replace it by a StringBuilder. Since the instance will never be shared. If the instance is a instance of the object or a static instance at the top, then we can&#39;t touch it.<br>

&gt;<br>
&gt; Are there other reasons why we are using StringBuffer?<br>
&gt; Chris<br>
&gt;<br>
</div></div><div><div></div><div class="h5">&gt; _______________________________________________<br>
&gt; jsword-devel mailing list<br>
&gt; <a href="mailto:jsword-devel@crosswire.org">jsword-devel@crosswire.org</a><br>
&gt; <a href="http://www.crosswire.org/mailman/listinfo/jsword-devel" target="_blank">http://www.crosswire.org/mailman/listinfo/jsword-devel</a><br>
</div></div></blockquote></div><br></div>