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

[jira] Resolved: (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:all-tabpanel ]

Nathan Beyer resolved HARMONY-6212.
-----------------------------------

    Resolution: Fixed

Patches applied at r778555. Please verify they were applied as expected.

> [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.