We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ad4082 commit b23dc71Copy full SHA for b23dc71
substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/CollectionPolicy.java
@@ -38,8 +38,8 @@
38
/** The interface for a garbage collection policy. All sizes are in bytes. */
39
public interface CollectionPolicy {
40
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");
+ @Option(help = "The garbage collection policy, either Adaptive (default) or BySpaceAndTime.")//
+ public static final HostedOptionKey<String> InitialCollectionPolicy = new HostedOptionKey<>("Adaptive");
43
}
44
45
@Platforms(Platform.HOSTED_ONLY.class)
0 commit comments