Turn off strict Record#get() implementaiton until it's more practical
to actually request all fields.


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@7969 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/bikeshed/src/com/google/gwt/valuestore/shared/impl/RecordJsoImpl.java b/bikeshed/src/com/google/gwt/valuestore/shared/impl/RecordJsoImpl.java
index 0395a60..67152ed 100644
--- a/bikeshed/src/com/google/gwt/valuestore/shared/impl/RecordJsoImpl.java
+++ b/bikeshed/src/com/google/gwt/valuestore/shared/impl/RecordJsoImpl.java
@@ -55,8 +55,9 @@
 
   @SuppressWarnings("unchecked")
   public final <V> V get(Property<V> property) {
-    assert isDefined(property.getName()) : "Cannot ask for a property before setting it: "
-        + property.getName();
+    // TODO lax for the moment b/c client code can't yet reasonably make the request
+//     assert isDefined(property.getName()) : "Cannot ask for a property before setting it: "
+//         + property.getName();
 
     if (Integer.class.equals(property.getType())) {
       return (V) Integer.valueOf(getInt(property.getName()));