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 2008/02/09 13:05:08 UTC

[jira] Assigned: (HARMONY-5465) [classlib][util] Locale(String, String, String) capitalize third parameter (variant)

     [ https://issues.apache.org/jira/browse/HARMONY-5465?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tony Wu reassigned HARMONY-5465:
--------------------------------

    Assignee: Tony Wu

> [classlib][util] Locale(String, String, String) capitalize third parameter (variant)
> ------------------------------------------------------------------------------------
>
>                 Key: HARMONY-5465
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5465
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: All
>            Reporter: Pavel Pervov
>            Assignee: Tony Wu
>             Fix For: 5.0M5
>
>
> The following test passes on RI, but fails on Harmony:
> -------------------------
> import java.util.Locale;
> class LocaleVariant {
>     public static void main(String[] args) {
>         Locale p = new Locale("en","GB", "Custom_LNX");
>         if(p.getVariant().equals("Custom_LNX")) {
>             System.out.println("PASSED");
>         } else {
>             System.out.println("FAILED: Custom_LNX != " + p.getVariant());
>         }
>     }
> }
> -------------------------

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