commit | 97f9c69bc70839c146e21fef048d0e1316ad331f | [log] [tgz] |
---|---|---|
author | rchandia@google.com <rchandia@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Oct 22 15:08:49 2010 +0000 |
committer | rchandia@google.com <rchandia@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Oct 22 15:08:49 2010 +0000 |
tree | 58ebe8040e036e9147a06864c2269b3ca5d86efc | |
parent | fa8290edbf37f597df2a5984bf207abde9fe2b32 [diff] |
Removed unnecessary log message: WARNING: Record with futureId X not persisted Review at http://gwt-code-reviews.appspot.com/1046801 Review by: rjrjr@google.com git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@9134 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java b/user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java index 39242b4..328e8a9 100644 --- a/user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java +++ b/user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java
@@ -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);