SeamResourceBundle bundleCache always empty
-------------------------------------------
Key: JBSEAM-1677
URL:
http://jira.jboss.com/jira/browse/JBSEAM-1677
Project: JBoss Seam
Issue Type: Bug
Reporter: Darryl Smith
SeamResourceBundle.java:44
Locale instance = org.jboss.seam.core.Locale.instance();
if ( bundleCache.containsKey(instance) )
{
bundleCache.put( instance, loadBundlesForCurrentLocale() );
}
should be
Locale instance = org.jboss.seam.core.Locale.instance();
if ( !bundleCache.containsKey(instance) )
{
bundleCache.put( instance, loadBundlesForCurrentLocale() );
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira