Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.5.2
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
GROOVY-920 resulted in size() being implemented for StringBuffer. size() should also be implemented for StringBuilder on JDK1.5+ platforms.
Similarly, leftShift should be added to StringBuilder. Now it is possible to do this w/ StringBuffer:
sb << "foo"
but not w/ StringBuilder.