Revision: 9134
Author: [email protected]
Date: Fri Oct 22 08:08:49 2010
Log: Removed unnecessary log message:
WARNING: Record with futureId X not persisted

Review at http://gwt-code-reviews.appspot.com/1046801

Review by: [email protected]
http://code.google.com/p/google-web-toolkit/source/detail?r=9134

Modified:
/trunk/user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java

=======================================
--- /trunk/user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java Thu Oct 14 18:28:29 2010 +++ /trunk/user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java Fri Oct 22 08:08:49 2010
@@ -1246,9 +1246,8 @@
     Object newId = getRawPropertyValueFromDatastore(entityInstance,
         Constants.ENTITY_ID_PROPERTY);
     if (newId == null) {
-      log.warning("Record with futureId " + originalEntityKey.encodedId
-          + " not persisted");
-      return null; // no changeRecord for this CREATE.
+      // no changeRecord for this CREATE.
+      return null;
     }

     newId = encodeId(newId);

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

Reply via email to