commit | 7cd7c4c06c8d922bc3cacb2c9410afecf04f81e7 | [log] [tgz] |
---|---|---|
author | zundel@google.com <zundel@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon May 23 11:05:48 2011 +0000 |
committer | zundel@google.com <zundel@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon May 23 11:05:48 2011 +0000 |
tree | 475d4fccdd7124b868d781f32628b64e1d785caa | |
parent | 3acd46c5fac12e477e1d77ec50794a1a77539f24 [diff] |
Enables on the persistent unit cache by default. Review at http://gwt-code-reviews.appspot.com/1448801 git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@10202 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/javac/UnitCacheFactory.java b/dev/core/src/com/google/gwt/dev/javac/UnitCacheFactory.java index 6b1ef43..75d8bb5 100644 --- a/dev/core/src/com/google/gwt/dev/javac/UnitCacheFactory.java +++ b/dev/core/src/com/google/gwt/dev/javac/UnitCacheFactory.java
@@ -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;