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];
   }-*/;