You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ofbiz.apache.org by "Michael Brohl (JIRA)" <ji...@apache.org> on 2017/11/04 19:49:00 UTC

[jira] [Closed] (OFBIZ-9964) UtilMisc.ensureLocale does not always return a valid Locale

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

Michael Brohl closed OFBIZ-9964.
--------------------------------
       Resolution: Fixed
    Fix Version/s: 16.11.04

Fixed in
trunk r1814319
release 16.11 r1814322

> UtilMisc.ensureLocale does not always return a valid Locale
> -----------------------------------------------------------
>
>                 Key: OFBIZ-9964
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-9964
>             Project: OFBiz
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: Trunk, Release Branch 16.11
>            Reporter: Michael Brohl
>            Assignee: Michael Brohl
>            Priority: Minor
>             Fix For: 16.11.04
>
>         Attachments: OFBIZ-9964_ensureLocale.patch
>
>
> The Javadoc promises that the function will always return a valid Locale, at least a default.
> This does not work if a String is provided which cannot be parsed to a valid locale through the parseLocale function which can return null.
> {code:java}
>     public static Locale ensureLocale(Object localeObject) {
>         if (localeObject instanceof String) {
>             return parseLocale((String) localeObject);
>         } else if (localeObject instanceof Locale) {
>             return (Locale) localeObject;
>         }
>         return Locale.getDefault();
>     }
> {code}
> I will provide a patch for it.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)