Handsome-cong opened a new issue, #2203: URL: https://github.com/apache/fury/issues/2203
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/fury/issues) and found no similar issues. ### Version a37cc5513dd60c1995faa0998ac8c185d8337ce6 ### Component(s) Java ### Minimal reproduce step ``` java Fury fury = Fury.builder().withLanguage(Language.XLANG).build(); ArrayList<String> strList = new ArrayList<>(); strList.add(null); fury.serialize(strList); ``` ### What did you expect to see? The correct serialization into a byte sequence, and the ability to deserialize it back into a sequence containing only nulls. ### What did you see instead? ``` org.apache.fury.exception.ClassUnregisteredException: Class java.lang.Object is not registered ``` ### Anything Else? Different exception is thrown when RefTracing is enabled. It seems that void and Object are not registered by XtypeResolver by default. ### 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]
