Search before asking
Version
a37cc55
Component(s)
Java
Minimal reproduce step
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?
Search before asking
Version
a37cc55
Component(s)
Java
Minimal reproduce step
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?
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?