Details
-
Sub-task
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.9.0
-
None
-
None
Description
Resolve FindBugs reported issues in Globalization.java:
Before
obj.put("millisecond", new Long(0));
After
obj.put("millisecond", Long.valueOf(0));
Before (2 places)
obj.put("rounding", new Integer(0));
After
obj.put("rounding", Integer.valueOf(0));