Revision: 6845 Author: [email protected] Date: Wed Nov 11 12:47:24 2009 Log: Fixes a bug where using GWT 2.0 tip, and GAE 1.2.6 blows up with a Bus error. It is not entirely clear why this happens but the JVM shutsdown with no real feedback.
Review by: jat http://code.google.com/p/google-web-toolkit/source/detail?r=6845 Modified: /trunk/dev/core/src/com/google/gwt/dev/DevModeBase.java ======================================= --- /trunk/dev/core/src/com/google/gwt/dev/DevModeBase.java Tue Nov 10 20:42:30 2009 +++ /trunk/dev/core/src/com/google/gwt/dev/DevModeBase.java Wed Nov 11 12:47:24 2009 @@ -720,10 +720,10 @@ */ public final void run() { try { + // Eager AWT init for OS X to ensure safe coexistence with SWT. + BootStrapPlatform.initGui(); + if (startUp()) { - // Eager AWT init for OS X to ensure safe coexistence with SWT. - BootStrapPlatform.initGui(); - // The web server is running now, so launch browsers for startup urls. launchStartupUrls(getTopLogger()); } --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
