From b08afc4174da6803860c920dec27aa48080ee0fc Mon Sep 17 00:00:00 2001 From: orisgarno <42269241+orisgarno@users.noreply.github.com> Date: Sat, 1 Feb 2025 21:22:07 +0700 Subject: [PATCH] Update java_serialization_guide.md --- docs/guide/java_serialization_guide.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/guide/java_serialization_guide.md b/docs/guide/java_serialization_guide.md index 707643935b..9a792d7b00 100644 --- a/docs/guide/java_serialization_guide.md +++ b/docs/guide/java_serialization_guide.md @@ -521,9 +521,7 @@ consistent between serialization and deserialization. ### Deserialize POJO into another type Fury allows you to serialize one POJO and deserialize it into a different POJO. To achieve this, configure Fury with -`CompatibleMode` set to `org.apache.fury.config.CompatibleMode.COMPATIBLE`. Additionally, you only need to register the -specific classes you want to serialize or deserialize to setup type mapping relationship; there's no need to register any nested classes within them. -[See example here](/java/fury-core/src/test/java/org/apache/fury/serializer/compatible/DifferentPOJOCompatibleSerializerTest.java) +`CompatibleMode` set to `org.apache.fury.config.CompatibleMode.COMPATIBLE`. ### Use wrong API for deserialization