Skip to content
Merged
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
1 change: 1 addition & 0 deletions substratevm/mx.substratevm/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -733,6 +733,7 @@
"sun.nio.ch",
"sun.util.cldr",
"sun.util.locale",
"sun.util.spi",
"sun.invoke.util",
],
"java.management": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
import sun.util.locale.provider.LocaleProviderAdapter;
import sun.util.locale.provider.ResourceBundleBasedAdapter;
import sun.util.resources.LocaleData;
import sun.util.spi.CalendarProvider;

/**
* LocalizationFeature is the core class of SVM localization support. It contains all the options
Expand Down Expand Up @@ -430,7 +431,8 @@ public static void addCharset(Charset charset) {
TimeZoneNameProvider.class,
JavaTimeDateTimePatternProvider.class,
CalendarDataProvider.class,
CalendarNameProvider.class);
CalendarNameProvider.class,
CalendarProvider.class);

@Platforms(Platform.HOSTED_ONLY.class)
private void addProviders() {
Expand Down