Revision: 6846 Author: [email protected] Date: Wed Nov 11 12:58:11 2009 Log: tr...@6845 was merged into this branch 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. svn merge --ignore-ancestry -c6845 https://google-web-toolkit.googlecode.com/svn/trunk/ .
http://code.google.com/p/google-web-toolkit/source/detail?r=6846 Modified: /releases/2.0/branch-info.txt /releases/2.0/dev/core/src/com/google/gwt/dev/DevModeBase.java ======================================= --- /releases/2.0/branch-info.txt Wed Nov 11 12:06:42 2009 +++ /releases/2.0/branch-info.txt Wed Nov 11 12:58:11 2009 @@ -562,3 +562,7 @@ tr...@6842 was merged into this branch Fix external issue 4140: Javascript deserialization error on JPA-annotated classes svn merge --ignore-ancestry -c6842 https://google-web-toolkit.googlecode.com/svn/trunk/ . + +tr...@6845 was merged into this branch + 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. + svn merge --ignore-ancestry -c6845 https://google-web-toolkit.googlecode.com/svn/trunk/ . ======================================= --- /releases/2.0/dev/core/src/com/google/gwt/dev/DevModeBase.java Wed Nov 11 11:04:31 2009 +++ /releases/2.0/dev/core/src/com/google/gwt/dev/DevModeBase.java Wed Nov 11 12:58:11 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 -~----------~----~----~----~------~----~------~--~---
