From bce372e57d9426258cf8c7e3fce85f69a0f47eea Mon Sep 17 00:00:00 2001 From: Shawn Yang Date: Sun, 3 Nov 2024 23:48:21 +0800 Subject: [PATCH] fix(scala): fix scala native-image.properties (#1923) ## What does this PR do? ## Related issues #1922 ## Does this PR introduce any user-facing change? - [ ] Does this PR introduce any public API change? - [ ] Does this PR introduce any binary protocol compatibility change? ## Benchmark --- .../org.apache.fury/fury-core/native-image.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scala/src/main/resources/META-INF/native-image/org.apache.fury/fury-core/native-image.properties b/scala/src/main/resources/META-INF/native-image/org.apache.fury/fury-core/native-image.properties index bdc7207e71..00569a5867 100644 --- a/scala/src/main/resources/META-INF/native-image/org.apache.fury/fury-core/native-image.properties +++ b/scala/src/main/resources/META-INF/native-image/org.apache.fury/fury-core/native-image.properties @@ -18,9 +18,9 @@ # https://www.graalvm.org/latest/reference-manual/native-image/dynamic-features/Reflection/#unsafe-accesses : # The unsafe offset get on build time may be different from runtime Args=--initialize-at-build-time=org.apache.fury.type.ScalaTypes,\ - org.apache.fury.type.Seq,\ - org.apache.fury.type.Map,\ - org.apache.fury.type.Iterable,\ + scala.collection.Seq,\ + scala.collection.Map,\ + scala.collection.Iterable,\ scala.collection.Iterator,\ org.apache.fury.serializer.scala.ScalaDispatcher,\ org.apache.fury.serializer.scala.AbstractScalaCollectionSerializer,\