Author: [email protected]
Date: Sat Mar 28 19:56:21 2009
New Revision: 5099

Modified:
    trunk/user/src/com/google/gwt/core/client/JavaScriptObject.java

Log:
Fix sort order.

Patch by: jat
Review by: fabbott (TBR)


Modified: trunk/user/src/com/google/gwt/core/client/JavaScriptObject.java
==============================================================================
--- trunk/user/src/com/google/gwt/core/client/JavaScriptObject.java      
(original)
+++ trunk/user/src/com/google/gwt/core/client/JavaScriptObject.java     Sat Mar 
 
28 19:56:21 2009
@@ -28,13 +28,6 @@
  public class JavaScriptObject {

    /**
-   * Call the toSource() on the JSO
-   */
-  public native String toSource() /*-{
-    this.toSource ? this.toSource() : "NO SOURCE";
-  }-*/;
-
-  /**
     * Returns a new array.
     */
    public static native JavaScriptObject createArray() /*-{
@@ -97,6 +90,13 @@
    public final int hashCode() {
      return Impl.getHashCode(this);
    }
+
+  /**
+   * Call the toSource() on the JSO
+   */
+  public native String toSource() /*-{
+    this.toSource ? this.toSource() : "NO SOURCE";
+  }-*/;

    /**
     * catch-all toString in lieu of a better mechanism.

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

Reply via email to