[seam-issues] [JBoss JIRA] Commented: (SEAMINTL-32) NPEs in ApplicationBundles.put*

Nicklas Karlsson (JIRA) jira-events at lists.jboss.org
Sun Mar 13 18:04:45 EDT 2011


    [ https://issues.jboss.org/browse/SEAMINTL-32?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12587621#comment-12587621 ] 

Nicklas Karlsson commented on SEAMINTL-32:
------------------------------------------

I'm pretty sure it works by just looking at it because I used very similar code as a workaround.

> NPEs in ApplicationBundles.put*
> -------------------------------
>
>                 Key: SEAMINTL-32
>                 URL: https://issues.jboss.org/browse/SEAMINTL-32
>             Project: Seam International
>          Issue Type: Bug
>          Components: Messages
>    Affects Versions: 3.0.0.CR1
>            Reporter: Nicklas Karlsson
>            Assignee: Ken Finnigan
>             Fix For: 3.0.0.Final
>
>
> If you put something in the bundles with a locale for the first time, bundles.get(locale) is null and we get a NPE.
>    public ResourceBundle put(final Locale locale, final String key, final ResourceBundle value)
>    {
>       return bundles.get(locale).put(key, value);
>    }
>    public void putAll(final Locale locale, final Map<? extends String, ? extends ResourceBundle> m)
>    {
>       bundles.get(locale).putAll(m);
>    }
> Nested map access need a if(!bundles.containsKey(locale)) + map init

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the seam-issues mailing list