Revision: 9046
Author: unn...@google.com
Date: Wed Oct 13 07:49:55 2010
Log: Fix null exception in HostedLinker which is run by GWTShell

Review by: con...@google.com
http://code.google.com/p/google-web-toolkit/source/detail?r=9046

Modified:
/trunk/dev/core/src/com/google/gwt/core/ext/linker/impl/PermutationsUtil.java

=======================================
--- /trunk/dev/core/src/com/google/gwt/core/ext/linker/impl/PermutationsUtil.java Tue Oct 12 16:00:43 2010 +++ /trunk/dev/core/src/com/google/gwt/core/ext/linker/impl/PermutationsUtil.java Wed Oct 13 07:49:55 2010
@@ -66,7 +66,8 @@
* compilation. A single compilation can have multiple property settings if * the compiles for those settings yielded the exact same compiled output.
    */
- protected SortedMap<PermutationId, List<Map<String, String>>> propMapsByPermutation = null; + protected SortedMap<PermutationId, List<Map<String, String>>> propMapsByPermutation =
+      new TreeMap<PermutationId, List<Map<String, String>>>();

   /**
    * Uses the internal map to insert JS to select a permutation into the

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to