Skip to content

Commit b23dc71

Browse files
committed
Default to adaptive GC policy.
1 parent 9ad4082 commit b23dc71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/CollectionPolicy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
/** The interface for a garbage collection policy. All sizes are in bytes. */
3939
public interface CollectionPolicy {
4040
final class Options {
41-
@Option(help = "The garbage collection policy, either Adaptive or BySpaceAndTime (default).")//
42-
public static final HostedOptionKey<String> InitialCollectionPolicy = new HostedOptionKey<>("BySpaceAndTime");
41+
@Option(help = "The garbage collection policy, either Adaptive (default) or BySpaceAndTime.")//
42+
public static final HostedOptionKey<String> InitialCollectionPolicy = new HostedOptionKey<>("Adaptive");
4343
}
4444

4545
@Platforms(Platform.HOSTED_ONLY.class)

0 commit comments

Comments
 (0)