Reviewers: jat, Description: Description: =========== Somehow during the merge, the remote user agents stopped getting passed into the compiler.
Fix: ==== CompileStrategy now passes the remoteUserAgents (which can be null) into JUnitShell#maybeCompileModule. Please review this at http://gwt-code-reviews.appspot.com/83807 Affected files: user/src/com/google/gwt/junit/CompileStrategy.java Index: user/src/com/google/gwt/junit/CompileStrategy.java =================================================================== --- user/src/com/google/gwt/junit/CompileStrategy.java (revision 6439) +++ user/src/com/google/gwt/junit/CompileStrategy.java (working copy) @@ -184,7 +184,8 @@ strategy.processModule(moduleDef); - junitShell.maybeCompileForWebMode(syntheticModuleName); + junitShell.maybeCompileForWebMode(syntheticModuleName, + JUnitShell.getRemoteUserAgents()); return moduleDef; } --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
