Details
-
Type: Sub-task
-
Status: Closed (View Workflow)
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 1.6.1
-
Fix Version/s: 1.7
-
Component/s: o.c.common.util
-
Labels:None
-
Environment:
All
Description
The following code in Languages.java seems to have a typo. The second assignment should be to allLangs:
private static/* final */ResourceBundle commonLangs;
private static/* final */ResourceBundle allLangs;
static {
try
catch (MissingResourceException e)
{ assert false; }try { commonLangs = ResourceBundle.getBundle("iso639full", Locale.getDefault(), CWClassLoader.instance()); } catch (MissingResourceException e) { assert false; }
}
I will make this simple fix and check it in.