Skip to content

Commit c6d5031

Browse files
committed
#75 Disabling cache flushing by default
1 parent a98a38a commit c6d5031

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/javabdd/JFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class JFactory extends BDDFactoryIntImpl {
4040
* Flush the operation cache on every garbage collection. If this is false, we only clean the collected entries on
4141
* every GC, rather than emptying the whole cache. For most problems, you should keep this set to true.
4242
*/
43-
public static boolean FLUSH_CACHE_ON_GC = true;
43+
public static boolean FLUSH_CACHE_ON_GC = false;
4444

4545
static final boolean VERIFY_ASSERTIONS = false;
4646

0 commit comments

Comments
 (0)