| commit | 7fedd47af5a08466adcaf4b25bbd50d8a098eb81 | [log] [tgz] |
|---|---|---|
| author | amitmanjhi@google.com <amitmanjhi@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon Mar 15 15:44:11 2010 +0000 |
| committer | amitmanjhi@google.com <amitmanjhi@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon Mar 15 15:44:11 2010 +0000 |
| tree | 451ec3cff9aa338b4da4be778d920d320b307b8e | |
| parent | ba4416d34ada6783175dfc6b3188b40611dc2108 [diff] |
Sort & format. Patch by: amitmanjhi Review by: rjrjr git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@7731 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/bikeshed/src/com/google/gwt/requestfactory/shared/RequestFactory.java b/bikeshed/src/com/google/gwt/requestfactory/shared/RequestFactory.java index f8657dd..155e02f 100644 --- a/bikeshed/src/com/google/gwt/requestfactory/shared/RequestFactory.java +++ b/bikeshed/src/com/google/gwt/requestfactory/shared/RequestFactory.java
@@ -25,9 +25,9 @@ */ public interface RequestFactory { - public ValueStore getValueStore(); + ValueStore getValueStore(); // TODO actually a DeltaValueStore, interim hack - public SyncRequest syncRequest(final List<Values<?>> deltaValueStore); + SyncRequest syncRequest(final List<Values<?>> deltaValueStore); }
diff --git a/bikeshed/src/com/google/gwt/requestfactory/shared/ServerType.java b/bikeshed/src/com/google/gwt/requestfactory/shared/ServerType.java index 122ebaf..cc61e6e 100644 --- a/bikeshed/src/com/google/gwt/requestfactory/shared/ServerType.java +++ b/bikeshed/src/com/google/gwt/requestfactory/shared/ServerType.java
@@ -15,7 +15,6 @@ */ package com.google.gwt.requestfactory.shared; - /** * Identifies the server domain class represented by an {@link EntityRef}. */
diff --git a/bikeshed/src/com/google/gwt/valuestore/client/ValuesImpl.java b/bikeshed/src/com/google/gwt/valuestore/client/ValuesImpl.java index 74286ce..95adff3 100644 --- a/bikeshed/src/com/google/gwt/valuestore/client/ValuesImpl.java +++ b/bikeshed/src/com/google/gwt/valuestore/client/ValuesImpl.java
@@ -85,14 +85,14 @@ return output; }-*/; - private native double getDouble(String name) /*-{ - return this[name]; - }-*/; - private native Date dateForDouble(double millis) /*-{ return @java.util.Date::createFrom(D)(millis); }-*/; + private native double getDouble(String name) /*-{ + return this[name]; + }-*/; + private native int getInt(String name) /*-{ return this[name]; }-*/;