chaokunyang opened a new issue, #1849: URL: https://github.com/apache/fury/issues/1849
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/fury/issues) and found no similar issues. ### Version main branch ### Component(s) Java ### Minimal reproduce step In `org.apache.fury.serializer.AbstractObjectSerializer`, we added transient fields for copy too. But not all fields are copyable. For example, we may have a transient field such as a Lock, it's will introduce subtle bugs if we copy such objects. ### What did you expect to see? We should copy non-transient and non-static fields only, and follow object serialization semantics. ### What did you see instead? transient fields are copied too. ### Anything Else? #1701 #1739 ### Are you willing to submit a PR? - [ ] I'm willing to submit a PR! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
