public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
@ 2007-10-09 18:42 ` gnu_andrew at member dot fsf dot org
  2008-02-07 12:10 ` ian dot rogers at manchester dot ac dot uk
                   ` (38 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2007-10-09 18:42 UTC (permalink / raw)
  To: java-prs



------- Comment #3 from gnu_andrew at member dot fsf dot org  2007-10-09 18:42 -------
Is this still a valid thing to do?  We have an associated JikesRVM task for it:

http://jira.codehaus.org/browse/RVM-266


-- 

gnu_andrew at member dot fsf dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
  2007-10-09 18:42 ` [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate gnu_andrew at member dot fsf dot org
@ 2008-02-07 12:10 ` ian dot rogers at manchester dot ac dot uk
  2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
                   ` (37 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: ian dot rogers at manchester dot ac dot uk @ 2008-02-07 12:10 UTC (permalink / raw)
  To: java-prs



------- Comment #4 from ian dot rogers at manchester dot ac dot uk  2008-02-07 12:10 -------
There are two improvements described here:

1) avoid synchronization by the use of StringBuilder rather than StringBuffer

this is some what trivial and has largely been carried out in the Classpath
code base

2) switch to using a GCJ style string buffer that avoids copies

this is still awaiting action


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
@ 2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
  2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
                   ` (35 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-02-17 15:58 UTC (permalink / raw)
  To: java-prs



-- 

gnu_andrew at member dot fsf dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |gnu_andrew at member dot fsf
                   |dot org                     |dot org
             Status|WAITING                     |ASSIGNED
   Last reconfirmed|2005-10-30 17:22:17         |2008-02-17 15:58:22
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
  2007-10-09 18:42 ` [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate gnu_andrew at member dot fsf dot org
  2008-02-07 12:10 ` ian dot rogers at manchester dot ac dot uk
@ 2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
  2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
                   ` (36 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-02-17 15:58 UTC (permalink / raw)
  To: java-prs



-- 

gnu_andrew at member dot fsf dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |WAITING


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
@ 2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
  2008-02-27 23:00 ` gnu_andrew at member dot fsf dot org
                   ` (34 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-02-17 15:58 UTC (permalink / raw)
  To: java-prs



------- Comment #5 from gnu_andrew at member dot fsf dot org  2008-02-17 15:57 -------
Waiting on my patch to abstract StringBuffer/Builder being committed.
Then this is simply a matter of adding a class which uses the 'dont_copy'
version of the String constructor with toString.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
@ 2008-02-27 23:00 ` gnu_andrew at member dot fsf dot org
  2008-03-01  9:14 ` gnu_andrew at member dot fsf dot org
                   ` (33 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-02-27 23:00 UTC (permalink / raw)
  To: java-prs



------- Comment #6 from gnu_andrew at member dot fsf dot org  2008-02-27 23:00 -------
The new structure is committed.  As StringBuilder is final, we will have to
clone AbstractStringBuilder in the gnu.classpath package.  This is not too
problematic, as we don't expect the internal class to need to change.


-- 

gnu_andrew at member dot fsf dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |ASSIGNED
   Last reconfirmed|2008-02-17 15:58:22         |2008-02-27 23:00:53
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2008-02-27 23:00 ` gnu_andrew at member dot fsf dot org
@ 2008-03-01  9:14 ` gnu_andrew at member dot fsf dot org
  2008-03-05 21:03 ` gnu_andrew at member dot fsf dot org
                   ` (32 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-03-01  9:14 UTC (permalink / raw)
  To: java-prs



------- Comment #7 from gnu_andrew at member dot fsf dot org  2008-03-01 09:14 -------
Created an attachment (id=15250)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15250&action=view)
Patch to add CPStringBuilder


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2008-03-05 21:03 ` gnu_andrew at member dot fsf dot org
@ 2008-03-05 21:03 ` gnu_andrew at member dot fsf dot org
  2008-03-05 21:04 ` gnu_andrew at member dot fsf dot org
                   ` (30 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-03-05 21:03 UTC (permalink / raw)
  To: java-prs



------- Comment #9 from gnu_andrew at member dot fsf dot org  2008-03-05 21:03 -------
Created an attachment (id=15265)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15265&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2008-03-01  9:14 ` gnu_andrew at member dot fsf dot org
@ 2008-03-05 21:03 ` gnu_andrew at member dot fsf dot org
  2008-03-05 21:03 ` gnu_andrew at member dot fsf dot org
                   ` (31 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-03-05 21:03 UTC (permalink / raw)
  To: java-prs



------- Comment #8 from gnu_andrew at member dot fsf dot org  2008-03-05 21:03 -------
Created an attachment (id=15264)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15264&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2008-03-05 21:03 ` gnu_andrew at member dot fsf dot org
@ 2008-03-05 21:04 ` gnu_andrew at member dot fsf dot org
  2008-03-05 21:04 ` gnu_andrew at member dot fsf dot org
                   ` (29 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-03-05 21:04 UTC (permalink / raw)
  To: java-prs



-- 

gnu_andrew at member dot fsf dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |0.98


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2008-03-05 21:04 ` gnu_andrew at member dot fsf dot org
@ 2008-03-05 21:04 ` gnu_andrew at member dot fsf dot org
  2008-03-16 22:29 ` gnu_andrew at member dot fsf dot org
                   ` (28 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-03-05 21:04 UTC (permalink / raw)
  To: java-prs



------- Comment #10 from gnu_andrew at member dot fsf dot org  2008-03-05 21:04 -------
Created an attachment (id=15266)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15266&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2008-03-05 21:04 ` gnu_andrew at member dot fsf dot org
@ 2008-03-16 22:29 ` gnu_andrew at member dot fsf dot org
  2008-03-16 22:45 ` gnu_andrew at member dot fsf dot org
                   ` (27 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-03-16 22:29 UTC (permalink / raw)
  To: java-prs



------- Comment #11 from gnu_andrew at member dot fsf dot org  2008-03-16 22:29 -------
Created an attachment (id=15332)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15332&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (11 preceding siblings ...)
  2008-03-16 22:29 ` gnu_andrew at member dot fsf dot org
@ 2008-03-16 22:45 ` gnu_andrew at member dot fsf dot org
  2008-03-16 23:37 ` gnu_andrew at member dot fsf dot org
                   ` (26 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-03-16 22:45 UTC (permalink / raw)
  To: java-prs



------- Comment #12 from gnu_andrew at member dot fsf dot org  2008-03-16 22:45 -------
Created an attachment (id=15333)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15333&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (12 preceding siblings ...)
  2008-03-16 22:45 ` gnu_andrew at member dot fsf dot org
@ 2008-03-16 23:37 ` gnu_andrew at member dot fsf dot org
  2008-03-17  0:37 ` gnu_andrew at member dot fsf dot org
                   ` (25 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-03-16 23:37 UTC (permalink / raw)
  To: java-prs



------- Comment #13 from gnu_andrew at member dot fsf dot org  2008-03-16 23:37 -------
Created an attachment (id=15334)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15334&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (13 preceding siblings ...)
  2008-03-16 23:37 ` gnu_andrew at member dot fsf dot org
@ 2008-03-17  0:37 ` gnu_andrew at member dot fsf dot org
  2008-03-17  1:30 ` gnu_andrew at member dot fsf dot org
                   ` (24 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-03-17  0:37 UTC (permalink / raw)
  To: java-prs



------- Comment #14 from gnu_andrew at member dot fsf dot org  2008-03-17 00:37 -------
Created an attachment (id=15335)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15335&action=view)
Abstract reflection elements of CPStringBuilder to a VM class


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (14 preceding siblings ...)
  2008-03-17  0:37 ` gnu_andrew at member dot fsf dot org
@ 2008-03-17  1:30 ` gnu_andrew at member dot fsf dot org
  2008-04-27 22:01 ` gnu_andrew at member dot fsf dot org
                   ` (23 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-03-17  1:30 UTC (permalink / raw)
  To: java-prs



------- Comment #15 from gnu_andrew at member dot fsf dot org  2008-03-17 01:30 -------
Created an attachment (id=15336)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15336&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (15 preceding siblings ...)
  2008-03-17  1:30 ` gnu_andrew at member dot fsf dot org
@ 2008-04-27 22:01 ` gnu_andrew at member dot fsf dot org
  2008-05-01  0:44 ` gnu_andrew at member dot fsf dot org
                   ` (22 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-04-27 22:01 UTC (permalink / raw)
  To: java-prs



------- Comment #16 from gnu_andrew at member dot fsf dot org  2008-04-27 22:01 -------
Created an attachment (id=15539)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15539&action=view)
Fix substring bug


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (17 preceding siblings ...)
  2008-05-01  0:44 ` gnu_andrew at member dot fsf dot org
@ 2008-05-01  0:44 ` gnu_andrew at member dot fsf dot org
  2008-05-01  0:45 ` gnu_andrew at member dot fsf dot org
                   ` (20 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-01  0:44 UTC (permalink / raw)
  To: java-prs



------- Comment #17 from gnu_andrew at member dot fsf dot org  2008-05-01 00:44 -------
Created an attachment (id=15554)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15554&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (16 preceding siblings ...)
  2008-04-27 22:01 ` gnu_andrew at member dot fsf dot org
@ 2008-05-01  0:44 ` gnu_andrew at member dot fsf dot org
  2008-05-01  0:44 ` gnu_andrew at member dot fsf dot org
                   ` (21 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-01  0:44 UTC (permalink / raw)
  To: java-prs



------- Comment #18 from gnu_andrew at member dot fsf dot org  2008-05-01 00:44 -------
Created an attachment (id=15555)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15555&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (18 preceding siblings ...)
  2008-05-01  0:44 ` gnu_andrew at member dot fsf dot org
@ 2008-05-01  0:45 ` gnu_andrew at member dot fsf dot org
  2008-05-07 17:54 ` gnu_andrew at member dot fsf dot org
                   ` (19 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-01  0:45 UTC (permalink / raw)
  To: java-prs



------- Comment #19 from gnu_andrew at member dot fsf dot org  2008-05-01 00:45 -------
Created an attachment (id=15556)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15556&action=view)
Use StringBuilder in the examples


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (19 preceding siblings ...)
  2008-05-01  0:45 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 17:54 ` gnu_andrew at member dot fsf dot org
  2008-05-07 17:55 ` gnu_andrew at member dot fsf dot org
                   ` (18 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 17:54 UTC (permalink / raw)
  To: java-prs



------- Comment #20 from gnu_andrew at member dot fsf dot org  2008-05-07 17:54 -------
Created an attachment (id=15593)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15593&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (20 preceding siblings ...)
  2008-05-07 17:54 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 17:55 ` gnu_andrew at member dot fsf dot org
  2008-05-07 17:56 ` gnu_andrew at member dot fsf dot org
                   ` (17 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 17:55 UTC (permalink / raw)
  To: java-prs



------- Comment #21 from gnu_andrew at member dot fsf dot org  2008-05-07 17:55 -------
Created an attachment (id=15594)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15594&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (21 preceding siblings ...)
  2008-05-07 17:55 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 17:56 ` gnu_andrew at member dot fsf dot org
  2008-05-07 17:56 ` gnu_andrew at member dot fsf dot org
                   ` (16 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 17:56 UTC (permalink / raw)
  To: java-prs



------- Comment #22 from gnu_andrew at member dot fsf dot org  2008-05-07 17:56 -------
Created an attachment (id=15595)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15595&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (22 preceding siblings ...)
  2008-05-07 17:56 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 17:56 ` gnu_andrew at member dot fsf dot org
  2008-05-07 17:57 ` gnu_andrew at member dot fsf dot org
                   ` (15 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 17:56 UTC (permalink / raw)
  To: java-prs



------- Comment #23 from gnu_andrew at member dot fsf dot org  2008-05-07 17:56 -------
Created an attachment (id=15596)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15596&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (23 preceding siblings ...)
  2008-05-07 17:56 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 17:57 ` gnu_andrew at member dot fsf dot org
  2008-05-07 17:57 ` gnu_andrew at member dot fsf dot org
                   ` (14 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 17:57 UTC (permalink / raw)
  To: java-prs



------- Comment #25 from gnu_andrew at member dot fsf dot org  2008-05-07 17:57 -------
Created an attachment (id=15598)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15598&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (24 preceding siblings ...)
  2008-05-07 17:57 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 17:57 ` gnu_andrew at member dot fsf dot org
  2008-05-07 17:58 ` gnu_andrew at member dot fsf dot org
                   ` (13 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 17:57 UTC (permalink / raw)
  To: java-prs



------- Comment #24 from gnu_andrew at member dot fsf dot org  2008-05-07 17:57 -------
Created an attachment (id=15597)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15597&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (25 preceding siblings ...)
  2008-05-07 17:57 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 17:58 ` gnu_andrew at member dot fsf dot org
  2008-05-07 17:58 ` gnu_andrew at member dot fsf dot org
                   ` (12 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 17:58 UTC (permalink / raw)
  To: java-prs



------- Comment #27 from gnu_andrew at member dot fsf dot org  2008-05-07 17:58 -------
Created an attachment (id=15600)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15600&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (26 preceding siblings ...)
  2008-05-07 17:58 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 17:58 ` gnu_andrew at member dot fsf dot org
  2008-05-07 17:59 ` ddaney at avtrex dot com
                   ` (11 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 17:58 UTC (permalink / raw)
  To: java-prs



------- Comment #26 from gnu_andrew at member dot fsf dot org  2008-05-07 17:58 -------
Created an attachment (id=15599)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15599&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (27 preceding siblings ...)
  2008-05-07 17:58 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 17:59 ` ddaney at avtrex dot com
  2008-05-07 18:01 ` gnu_andrew at member dot fsf dot org
                   ` (10 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: ddaney at avtrex dot com @ 2008-05-07 17:59 UTC (permalink / raw)
  To: java-prs



------- Comment #28 from ddaney at avtrex dot com  2008-05-07 17:59 -------
Subject: Re:  We should to use StringBuilder instead
 of StringBuffer where appropriate.

gnu_andrew at member dot fsf dot org wrote:
> ------- Comment #25 from gnu_andrew at member dot fsf dot org  2008-05-07 17:57 -------
> Created an attachment (id=15598)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15598&action=view)
>  --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15598&action=view)
> Move towards a CPStringBuilder-using code base
> 
> 
I don't think it is strictly speaking necessary to attach all of these 
patches.

David Daney


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (28 preceding siblings ...)
  2008-05-07 17:59 ` ddaney at avtrex dot com
@ 2008-05-07 18:01 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:02 ` gnu_andrew at member dot fsf dot org
                   ` (9 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:01 UTC (permalink / raw)
  To: java-prs



------- Comment #29 from gnu_andrew at member dot fsf dot org  2008-05-07 18:01 -------
Created an attachment (id=15601)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15601&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (30 preceding siblings ...)
  2008-05-07 18:02 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 18:02 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:03 ` gnu_andrew at member dot fsf dot org
                   ` (7 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:02 UTC (permalink / raw)
  To: java-prs



------- Comment #30 from gnu_andrew at member dot fsf dot org  2008-05-07 18:02 -------
Created an attachment (id=15602)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15602&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (29 preceding siblings ...)
  2008-05-07 18:01 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 18:02 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:02 ` gnu_andrew at member dot fsf dot org
                   ` (8 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:02 UTC (permalink / raw)
  To: java-prs



------- Comment #31 from gnu_andrew at member dot fsf dot org  2008-05-07 18:02 -------
Created an attachment (id=15603)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15603&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (31 preceding siblings ...)
  2008-05-07 18:02 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 18:03 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:04 ` gnu_andrew at member dot fsf dot org
                   ` (6 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:03 UTC (permalink / raw)
  To: java-prs



------- Comment #32 from gnu_andrew at member dot fsf dot org  2008-05-07 18:03 -------
Created an attachment (id=15604)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15604&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (32 preceding siblings ...)
  2008-05-07 18:03 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 18:04 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:04 ` gnu_andrew at member dot fsf dot org
                   ` (5 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:04 UTC (permalink / raw)
  To: java-prs



------- Comment #34 from gnu_andrew at member dot fsf dot org  2008-05-07 18:04 -------
Created an attachment (id=15606)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15606&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (33 preceding siblings ...)
  2008-05-07 18:04 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 18:04 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:07 ` gnu_andrew at member dot fsf dot org
                   ` (4 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:04 UTC (permalink / raw)
  To: java-prs



------- Comment #33 from gnu_andrew at member dot fsf dot org  2008-05-07 18:04 -------
Created an attachment (id=15605)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15605&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (35 preceding siblings ...)
  2008-05-07 18:07 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 18:07 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:08 ` gnu_andrew at member dot fsf dot org
                   ` (2 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:07 UTC (permalink / raw)
  To: java-prs



------- Comment #36 from gnu_andrew at member dot fsf dot org  2008-05-07 18:07 -------
Created an attachment (id=15608)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15608&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (34 preceding siblings ...)
  2008-05-07 18:04 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 18:07 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:07 ` gnu_andrew at member dot fsf dot org
                   ` (3 subsequent siblings)
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:07 UTC (permalink / raw)
  To: java-prs



------- Comment #35 from gnu_andrew at member dot fsf dot org  2008-05-07 18:07 -------
Created an attachment (id=15607)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15607&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (37 preceding siblings ...)
  2008-05-07 18:08 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 18:08 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:10 ` gnu_andrew at member dot fsf dot org
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:08 UTC (permalink / raw)
  To: java-prs



------- Comment #38 from gnu_andrew at member dot fsf dot org  2008-05-07 18:08 -------
Created an attachment (id=15611)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15611&action=view)
Change tools to use StringBuilder


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (36 preceding siblings ...)
  2008-05-07 18:07 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 18:08 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:08 ` gnu_andrew at member dot fsf dot org
  2008-05-07 18:10 ` gnu_andrew at member dot fsf dot org
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:08 UTC (permalink / raw)
  To: java-prs



------- Comment #37 from gnu_andrew at member dot fsf dot org  2008-05-07 18:08 -------
Created an attachment (id=15609)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15609&action=view)
Move towards a CPStringBuilder-using code base


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
       [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
                   ` (38 preceding siblings ...)
  2008-05-07 18:08 ` gnu_andrew at member dot fsf dot org
@ 2008-05-07 18:10 ` gnu_andrew at member dot fsf dot org
  39 siblings, 0 replies; 41+ messages in thread
From: gnu_andrew at member dot fsf dot org @ 2008-05-07 18:10 UTC (permalink / raw)
  To: java-prs



------- Comment #39 from gnu_andrew at member dot fsf dot org  2008-05-07 18:10 -------
All appropriate changes made.  Closing this bug.


-- 

gnu_andrew at member dot fsf dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

* [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate.
  2005-06-01 23:24 [Bug libgcj/21869] New: " daney at gcc dot gnu dot org
@ 2005-07-27 17:39 ` tromey at gcc dot gnu dot org
  0 siblings, 0 replies; 41+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-07-27 17:39 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From tromey at gcc dot gnu dot org  2005-07-27 17:39 -------
This is a request for Classpath.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|libgcj                      |classpath
            Product|gcc                         |classpath
            Version|4.1.0                       |0.17


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21869


^ permalink raw reply	[flat|nested] 41+ messages in thread

end of thread, other threads:[~2008-05-07 18:10 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-21869-7151@http.gcc.gnu.org/bugzilla/>
2007-10-09 18:42 ` [Bug classpath/21869] We should to use StringBuilder instead of StringBuffer where appropriate gnu_andrew at member dot fsf dot org
2008-02-07 12:10 ` ian dot rogers at manchester dot ac dot uk
2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
2008-02-17 15:58 ` gnu_andrew at member dot fsf dot org
2008-02-27 23:00 ` gnu_andrew at member dot fsf dot org
2008-03-01  9:14 ` gnu_andrew at member dot fsf dot org
2008-03-05 21:03 ` gnu_andrew at member dot fsf dot org
2008-03-05 21:03 ` gnu_andrew at member dot fsf dot org
2008-03-05 21:04 ` gnu_andrew at member dot fsf dot org
2008-03-05 21:04 ` gnu_andrew at member dot fsf dot org
2008-03-16 22:29 ` gnu_andrew at member dot fsf dot org
2008-03-16 22:45 ` gnu_andrew at member dot fsf dot org
2008-03-16 23:37 ` gnu_andrew at member dot fsf dot org
2008-03-17  0:37 ` gnu_andrew at member dot fsf dot org
2008-03-17  1:30 ` gnu_andrew at member dot fsf dot org
2008-04-27 22:01 ` gnu_andrew at member dot fsf dot org
2008-05-01  0:44 ` gnu_andrew at member dot fsf dot org
2008-05-01  0:44 ` gnu_andrew at member dot fsf dot org
2008-05-01  0:45 ` gnu_andrew at member dot fsf dot org
2008-05-07 17:54 ` gnu_andrew at member dot fsf dot org
2008-05-07 17:55 ` gnu_andrew at member dot fsf dot org
2008-05-07 17:56 ` gnu_andrew at member dot fsf dot org
2008-05-07 17:56 ` gnu_andrew at member dot fsf dot org
2008-05-07 17:57 ` gnu_andrew at member dot fsf dot org
2008-05-07 17:57 ` gnu_andrew at member dot fsf dot org
2008-05-07 17:58 ` gnu_andrew at member dot fsf dot org
2008-05-07 17:58 ` gnu_andrew at member dot fsf dot org
2008-05-07 17:59 ` ddaney at avtrex dot com
2008-05-07 18:01 ` gnu_andrew at member dot fsf dot org
2008-05-07 18:02 ` gnu_andrew at member dot fsf dot org
2008-05-07 18:02 ` gnu_andrew at member dot fsf dot org
2008-05-07 18:03 ` gnu_andrew at member dot fsf dot org
2008-05-07 18:04 ` gnu_andrew at member dot fsf dot org
2008-05-07 18:04 ` gnu_andrew at member dot fsf dot org
2008-05-07 18:07 ` gnu_andrew at member dot fsf dot org
2008-05-07 18:07 ` gnu_andrew at member dot fsf dot org
2008-05-07 18:08 ` gnu_andrew at member dot fsf dot org
2008-05-07 18:08 ` gnu_andrew at member dot fsf dot org
2008-05-07 18:10 ` gnu_andrew at member dot fsf dot org
2005-06-01 23:24 [Bug libgcj/21869] New: " daney at gcc dot gnu dot org
2005-07-27 17:39 ` [Bug classpath/21869] " tromey at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).