Skip to content

Commit

Permalink
Revert "Default to -H:-CompactingOldGen."
Browse files Browse the repository at this point in the history
This reverts commit f405fcc.
  • Loading branch information
peter-hofer committed May 22, 2024
1 parent cb1baa2 commit 782474a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public Integer getValue(OptionValues values) {
/** Query these options only through an appropriate method. */
public static class ConcealedOptions {
@Option(help = "Collect old generation by compacting in-place instead of copying.", type = OptionType.Expert) //
public static final HostedOptionKey<Boolean> CompactingOldGen = new HostedOptionKey<>(false, SerialGCOptions::validateCompactingOldGen);
public static final HostedOptionKey<Boolean> CompactingOldGen = new HostedOptionKey<>(true, SerialGCOptions::validateCompactingOldGen);

@Option(help = "Determines if a remembered set is used, which is necessary for collecting the young and old generation independently.", type = OptionType.Expert) //
public static final HostedOptionKey<Boolean> UseRememberedSet = new HostedOptionKey<>(true, SerialGCOptions::serialGCOnly);
Expand Down

0 comments on commit 782474a

Please sign in to comment.