Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public CachingSettingsProvider() {
When a referenced proof is pruned, this is what happens to
all cached branches that reference it.""",
0, x -> {
}, PRUNE_REOPEN, PRUNE_COPY);
}, PRUNE_COPY, PRUNE_REOPEN);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ public class ProofCachingSettings extends AbstractPropertiesSettings {
* Behaviour when disposing a proof that is referenced elsewhere.
*/
private final AbstractPropertiesSettings.PropertyEntry<String> dispose =
createStringProperty(DISPOSE_KEY, "");
createStringProperty(DISPOSE_KEY, DISPOSE_COPY);
/**
* Behaviour when pruning a proof that is referenced elsewhere.
*/
private final AbstractPropertiesSettings.PropertyEntry<String> prune =
createStringProperty(PRUNE_KEY, "");
createStringProperty(PRUNE_KEY, PRUNE_COPY);

public ProofCachingSettings() {
super("ProofCaching");
Expand Down
Loading