This is an automated email from the ASF dual-hosted git repository.

chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 84c3df62a 🔄 synced local 'docs/guide/' with remote 'docs/guide/'
84c3df62a is described below

commit 84c3df62a3ec5d00489bb4c4cd45956118dca619
Author: chaokunyang <[email protected]>
AuthorDate: Mon Apr 20 07:54:41 2026 +0000

    🔄 synced local 'docs/guide/' with remote 'docs/guide/'
---
 docs/guide/java/index.md       | 2 +-
 docs/guide/java/object-copy.md | 6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/docs/guide/java/index.md b/docs/guide/java/index.md
index ef30bf5db..baf60f741 100644
--- a/docs/guide/java/index.md
+++ b/docs/guide/java/index.md
@@ -209,4 +209,4 @@ ThreadSafeFory threadLocalFory = Fory.builder()
 - [Type Registration](type-registration.md) - Class registration and security
 - [Custom Serializers](custom-serializers.md) - Implement custom serializers
 - [Cross-Language Serialization](cross-language.md) - Serialize data for other 
languages
-- [GraalVM Support](graalvm_support) - Build-time serializer compilation for 
native images
+- [GraalVM Support](graalvm-support.md) - Build-time serializer compilation 
for native images
diff --git a/docs/guide/java/object-copy.md b/docs/guide/java/object-copy.md
index c0fd4f51e..6a6d735ef 100644
--- a/docs/guide/java/object-copy.md
+++ b/docs/guide/java/object-copy.md
@@ -287,6 +287,8 @@ When a type already uses a custom serializer, override 
`Serializer.copy(...)` fo
 ```java
 import org.apache.fory.config.Config;
 import org.apache.fory.context.CopyContext;
+import org.apache.fory.context.ReadContext;
+import org.apache.fory.context.WriteContext;
 import org.apache.fory.serializer.Serializer;
 
 public final class EnvelopeSerializer extends Serializer<Envelope> {
@@ -304,12 +306,12 @@ public final class EnvelopeSerializer extends 
Serializer<Envelope> {
   }
 
   @Override
-  public void write(org.apache.fory.context.WriteContext writeContext, 
Envelope value) {
+  public void write(WriteContext writeContext, Envelope value) {
     throw new UnsupportedOperationException("omitted");
   }
 
   @Override
-  public Envelope read(org.apache.fory.context.ReadContext readContext) {
+  public Envelope read(ReadContext readContext) {
     throw new UnsupportedOperationException("omitted");
   }
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to