LTDA: Enable lazy analyze by default

This commit is contained in:
Nikolay Krasko
2014-11-21 16:40:45 +03:00
parent d1425c14ba
commit 48f459f656
@@ -31,7 +31,7 @@ public class TopDownAnalysisParameters extends LazinessToken implements GlobalCo
private static boolean LAZY;
static {
LAZY = "true".equals(System.getProperty("lazy.tda"));
LAZY = !"false".equals(System.getProperty("lazy.tda"));
}
@NotNull