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 a53da53 commit 091e9c1Copy full SHA for 091e9c1
substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/ServiceLoaderFeature.java
@@ -117,6 +117,11 @@ public static class Options {
117
* specialized features.
118
*/
119
private final Set<String> servicesToSkip = new HashSet<>(Arrays.asList(
120
+ /*
121
+ * Loaded in java.util.random.RandomGeneratorFactory.FactoryMapHolder, which is
122
+ * initialized at image build time.
123
+ */
124
+ "java.util.random.RandomGenerator",
125
"java.security.Provider", // see SecurityServicesFeature
126
"sun.util.locale.provider.LocaleDataMetaInfo", // see LocaleSubstitutions
127
"org.graalvm.nativeimage.Platform" // shouldn't be reachable after
0 commit comments