You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Li Jing Qin (JIRA)" <ji...@apache.org> on 2009/05/27 05:03:45 UTC

[jira] Commented: (HARMONY-6212) [classlib][luni] StringBuilder behavior affects the string got by the toString

    [ https://issues.apache.org/jira/browse/HARMONY-6212?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12713386#action_12713386 ] 

Li Jing Qin commented on HARMONY-6212:
--------------------------------------

Verified. Thanks Nathan.

> [classlib][luni] StringBuilder behavior affects the string got by the toString
> ------------------------------------------------------------------------------
>
>                 Key: HARMONY-6212
>                 URL: https://issues.apache.org/jira/browse/HARMONY-6212
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>    Affects Versions: 5.0M9
>            Reporter: Li Jing Qin
>            Assignee: Nathan Beyer
>             Fix For: 5.0M10
>
>         Attachments: HARMONY-6212-testcase.diff, HARMONY-6212.diff
>
>
> We use share mode under the abstractStringBuilder and String, since we have changed some thing in the model, there is some small bugs occurred then. Here is the one:
> StringBuilder desc = new StringBuilder();
> desc.append("abcde");
> String a = desc.toString();
> desc.delete(0, desc.length());
> desc.append("yy");
> System.out.println(a);
> We got "yycde" amazingly.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.