You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Tony Wu (JIRA)" <ji...@apache.org> on 2007/01/30 11:05:33 UTC

[jira] Created: (HARMONY-3084) [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale

[classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale
-----------------------------------------------------------------

                 Key: HARMONY-3084
                 URL: https://issues.apache.org/jira/browse/HARMONY-3084
             Project: Harmony
          Issue Type: Sub-task
          Components: Classlib
            Reporter: Tony Wu


String.toUpperCase was used redundantly in java.util.Locale,

There is following line,
countryCode = country.toUpperCase();
But country code is defined as ASCII character only.


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


[jira] Updated: (HARMONY-3084) [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale

Posted by "Tony Wu (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3084?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tony Wu updated HARMONY-3084:
-----------------------------

    Patch Info: [Patch Available]

> [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale
> -----------------------------------------------------------------
>
>                 Key: HARMONY-3084
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3084
>             Project: Harmony
>          Issue Type: Sub-task
>          Components: Classlib
>            Reporter: Tony Wu
>         Attachments: harmony-3084.diff
>
>
> String.toUpperCase was used redundantly in java.util.Locale,
> There is following line,
> countryCode = country.toUpperCase();
> But country code is defined as ASCII character only.

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


[jira] Closed: (HARMONY-3084) [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale

Posted by "Richard Liang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3084?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Richard Liang closed HARMONY-3084.
----------------------------------


Verified by Tony.

> [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale
> -----------------------------------------------------------------
>
>                 Key: HARMONY-3084
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3084
>             Project: Harmony
>          Issue Type: Sub-task
>          Components: Classlib
>            Reporter: Tony Wu
>         Assigned To: Richard Liang
>         Attachments: harmony-3084.diff
>
>
> String.toUpperCase was used redundantly in java.util.Locale,
> There is following line,
> countryCode = country.toUpperCase();
> But country code is defined as ASCII character only.

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


[jira] Updated: (HARMONY-3084) [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale

Posted by "Tony Wu (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3084?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tony Wu updated HARMONY-3084:
-----------------------------

    Attachment: harmony-3084.diff

would you please try it, thanks a lot

> [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale
> -----------------------------------------------------------------
>
>                 Key: HARMONY-3084
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3084
>             Project: Harmony
>          Issue Type: Sub-task
>          Components: Classlib
>            Reporter: Tony Wu
>         Attachments: harmony-3084.diff
>
>
> String.toUpperCase was used redundantly in java.util.Locale,
> There is following line,
> countryCode = country.toUpperCase();
> But country code is defined as ASCII character only.

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


[jira] Assigned: (HARMONY-3084) [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale

Posted by "Richard Liang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3084?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Richard Liang reassigned HARMONY-3084:
--------------------------------------

    Assignee: Richard Liang

> [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale
> -----------------------------------------------------------------
>
>                 Key: HARMONY-3084
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3084
>             Project: Harmony
>          Issue Type: Sub-task
>          Components: Classlib
>            Reporter: Tony Wu
>         Assigned To: Richard Liang
>         Attachments: harmony-3084.diff
>
>
> String.toUpperCase was used redundantly in java.util.Locale,
> There is following line,
> countryCode = country.toUpperCase();
> But country code is defined as ASCII character only.

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


[jira] Resolved: (HARMONY-3084) [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale

Posted by "Richard Liang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3084?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Richard Liang resolved HARMONY-3084.
------------------------------------

    Resolution: Fixed

Hello Tony,

The patch has been committed as revision r501775, thank you for this enhancement. Please verify this issue is fixed as you expected.

Best regards,
Richard

> [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale
> -----------------------------------------------------------------
>
>                 Key: HARMONY-3084
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3084
>             Project: Harmony
>          Issue Type: Sub-task
>          Components: Classlib
>            Reporter: Tony Wu
>         Assigned To: Richard Liang
>         Attachments: harmony-3084.diff
>
>
> String.toUpperCase was used redundantly in java.util.Locale,
> There is following line,
> countryCode = country.toUpperCase();
> But country code is defined as ASCII character only.

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


[jira] Commented: (HARMONY-3084) [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale

Posted by "Tony Wu (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-3084?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12469341 ] 

Tony Wu commented on HARMONY-3084:
----------------------------------

verified at r502080, thanks Richard.

> [classlib][luni]Acquire Util.toASCIIUpperCase in java.util.Locale
> -----------------------------------------------------------------
>
>                 Key: HARMONY-3084
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3084
>             Project: Harmony
>          Issue Type: Sub-task
>          Components: Classlib
>            Reporter: Tony Wu
>         Assigned To: Richard Liang
>         Attachments: harmony-3084.diff
>
>
> String.toUpperCase was used redundantly in java.util.Locale,
> There is following line,
> countryCode = country.toUpperCase();
> But country code is defined as ASCII character only.

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