Reviewers: tobyr, scottb, jbrosenberg,

Description:
Enables on the persistent unit cache by default.


Please review this at http://gwt-code-reviews.appspot.com/1448801/

Affected files:
  M dev/core/src/com/google/gwt/dev/javac/UnitCacheFactory.java


Index: dev/core/src/com/google/gwt/dev/javac/UnitCacheFactory.java
===================================================================
--- dev/core/src/com/google/gwt/dev/javac/UnitCacheFactory.java (revision 10178) +++ dev/core/src/com/google/gwt/dev/javac/UnitCacheFactory.java (working copy)
@@ -29,7 +29,7 @@
    * The API must be enabled explicitly for persistent caching to be live.
    */
private static final String configPropertyValue = System.getProperty("gwt.persistentunitcache",
-      "false");
+      "true");
private static final boolean usePersistent = configPropertyValue.length() == 0
       || Boolean.parseBoolean(configPropertyValue);
   private static UnitCache instance = null;


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

Reply via email to