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.
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Status | Open [ 1 ] | Resolved [ 5 ] |
Fix Version/s | 1.6.1 [ 10138 ] | |
Resolution | Fixed [ 1 ] |
Resolution | Fixed [ 1 ] | |
Status | Resolved [ 5 ] | Reopened [ 4 ] |
Assignee | Martin Denham [ mjdenham ] | DM Smith [ dmsmith ] |
Status | Reopened [ 4 ] | Resolved [ 5 ] |
Fix Version/s | 1.7 [ 10139 ] | |
Fix Version/s | 1.6.1 [ 10138 ] | |
Resolution | Fixed [ 1 ] |
Status | Resolved [ 5 ] | Closed [ 6 ] |
I changed commonLangs to allLangs at the bottom of Languages.java