Sort & format to remove checkstyle warning.

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2910 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/cfg/ModuleDefLoader.java b/dev/core/src/com/google/gwt/dev/cfg/ModuleDefLoader.java
index ffe772c..07d3d8c 100644
--- a/dev/core/src/com/google/gwt/dev/cfg/ModuleDefLoader.java
+++ b/dev/core/src/com/google/gwt/dev/cfg/ModuleDefLoader.java
@@ -55,6 +55,11 @@
   }
 
   /**
+   * Filename suffix used for GWT Module XML files.
+   */
+  public static final String GWT_MODULE_XML_SUFFIX = ".gwt.xml";
+
+  /**
    * Keep soft references to loaded modules so the VM can gc them when memory is
    * tight.
    */
@@ -141,11 +146,6 @@
   private final LoadStrategy strategy;
 
   /**
-   * Filename suffix used for GWT Module XML files.
-   */
-  public static final String GWT_MODULE_XML_SUFFIX = ".gwt.xml";
-
-  /**
    * Constructs a {@link ModuleDefLoader} that loads from the class path.
    */
   private ModuleDefLoader() {
@@ -272,10 +272,10 @@
     // Do any final setup.
     //
     moduleDef.normalize(logger);
-    
+
     // Add the "physical" module name: com.google.Module
     loadedModules.put(moduleName, moduleDef);
-    
+
     // Add the module's effective name: some.other.Module
     loadedModules.put(moduleDef.getName(), moduleDef);
     return moduleDef;