Fix sort order.
Patch by: jat
Review by: fabbott (TBR)
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@5099 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/core/client/JavaScriptObject.java b/user/src/com/google/gwt/core/client/JavaScriptObject.java
index 5c2f9b8..7fe1573 100644
--- a/user/src/com/google/gwt/core/client/JavaScriptObject.java
+++ b/user/src/com/google/gwt/core/client/JavaScriptObject.java
@@ -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() /*-{
@@ -99,6 +92,13 @@
}
/**
+ * 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.
* Basic assumption here is that this code is for debugging only!
*/