You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Peter (JIRA)" <ji...@apache.org> on 2013/09/25 03:26:02 UTC

[jira] [Created] (CB-4908) FB - Globalization.java - use valueOf instead of new Long/new Integer

Peter created CB-4908:
-------------------------

             Summary: FB - Globalization.java - use valueOf instead of new Long/new Integer
                 Key: CB-4908
                 URL: https://issues.apache.org/jira/browse/CB-4908
             Project: Apache Cordova
          Issue Type: Task
          Components: Android
    Affects Versions: 2.9.0
            Reporter: Peter
            Priority: Minor


Resolve FindBugs reported issues in *Globalization.java*:

Before
{code}
obj.put("millisecond", new Long(0)); 
{code}
After
{code}
obj.put("millisecond", Long.valueOf(0)); 
{code}

Before (2 places)
{code}
obj.put("rounding", new Integer(0)); 
{code}
After
{code}
obj.put("rounding", Integer.valueOf(0));
{code}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira