[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-1677) SeamResourceBundle bundleCache always empty

Darryl Smith (JIRA) jira-events at lists.jboss.org
Mon Jul 16 07:39:18 EDT 2007


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

        



More information about the seam-issues mailing list