Revision: 8620
Author: [email protected]
Date: Sun Aug 22 16:25:33 2010
Log: svn merge https://google-web-toolkit.googlecode.com/svn/trunk -r8618:8619 .
updated branch-info.txt

Patch by: amitmanjhi

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

Modified:
 /branches/2.1M3/branch-info.txt
/branches/2.1M3/user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java

=======================================
--- /branches/2.1M3/branch-info.txt     Fri Aug 20 17:52:57 2010
+++ /branches/2.1M3/branch-info.txt     Sun Aug 22 16:25:33 2010
@@ -14,4 +14,7 @@
   r8608 Ignoring __gwt_ObjectId in AbstractRequest#processRelated
   r8609 Snip stray debugging println.
 commited as r8611
+ r8619 svn merge https://google-web-toolkit.googlecode.com/svn/trunk -r8618:8619 .
+commited as r8620
 r8613: Removed the expenses sample from samples
+
=======================================
--- /branches/2.1M3/user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java Fri Aug 20 17:45:10 2010 +++ /branches/2.1M3/user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java Sun Aug 22 16:25:33 2010
@@ -320,7 +320,7 @@
     if (Boolean.class == type) {
       return value;
     }
-    if (Date.class == type) {
+    if (Date.class.isAssignableFrom(type)) {
       return String.valueOf(((Date) value).getTime());
     }
     if (Enum.class.isAssignableFrom(type)) {

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

Reply via email to