GWTMain uses new entry points now.

git-svn-id: https://google-web-toolkit.googlecode.com/svn/releases/1.6@4338 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/GWTMain.java b/dev/core/src/com/google/gwt/dev/GWTMain.java
index 2e821db..5659ed2 100644
--- a/dev/core/src/com/google/gwt/dev/GWTMain.java
+++ b/dev/core/src/com/google/gwt/dev/GWTMain.java
@@ -18,8 +18,8 @@
 import com.google.gwt.dev.util.Util;
 
 /**
- * Executable class provides help to users who run the jar by indicating
- * the enclosed classes that are executable.
+ * Executable class provides help to users who run the jar by indicating the
+ * enclosed classes that are executable.
  */
 public class GWTMain {
 
@@ -31,10 +31,10 @@
       System.err.println(About.GWT_VERSION);
     }
     System.err.println("Available main classes:");
-    System.err.println(addSpaces(GWTShell.class.getName(),
-      "runs the development shell"));
-    System.err.println(addSpaces(GWTCompiler.class.getName(),
-      "compiles a GWT module"));
+    System.err.println(addSpaces(HostedMode.class.getName(),
+        "runs the development shell"));
+    System.err.println(addSpaces(Compiler.class.getName(),
+        "compiles a GWT module"));
   }
 
   private static String addSpaces(String first, String second) {