Revision: 7331
Author: [email protected]
Date: Thu Dec 17 17:06:04 2009
Log: Add missing case for multiplier with a boxed long.

http://code.google.com/p/google-web-toolkit/source/detail?r=7331

Modified:
   
/changes/jat/bigdecimal/user/src/com/google/gwt/i18n/client/NumberFormat.java

=======================================
---  
/changes/jat/bigdecimal/user/src/com/google/gwt/i18n/client/NumberFormat.java   
 
Thu Dec 17 16:21:13 2009
+++  
/changes/jat/bigdecimal/user/src/com/google/gwt/i18n/client/NumberFormat.java   
 
Thu Dec 17 17:06:04 2009
@@ -863,6 +863,7 @@
        if (isNegative) {
          longVal = -longVal;
        }
+      longVal *= multiplier;
        StringBuilder buf = new StringBuilder();
        buf.append(String.valueOf(longVal));
        format(isNegative, buf, 0);

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to