-
-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
null
Object Id serialized as anchor for YAML
#63
Comments
Any chance you could write a test case to show the problem? I agree that fix sounds legit, but I am trying to figure out where does the |
Yes of course, please find the belowed test. |
@cowtowncoder Hello, do you reproduce with my sample ? |
@jflefebvre06 Thank you for reminder! Unfortunately I haven't had time to look into this, but I now added it on Work-in-progress page: https://github.com/FasterXML/jackson-future-ideas/wiki/Jackson-Work-in-Progress to improve chances I'll get here soon. Apologies for delays. |
null
Object Id serialized as anchor for YAML
Works fine thank you |
@jflefebvre06 thank you for verification. |
Bug detected into com.fasterxml.jackson.databind.ser.impl.WritableObjectId#writeAsField
gen.writeObjectId(String.valueOf(id));
shoud be if(id!=null)gen.writeObjectId(String.valueOf(id));
The text was updated successfully, but these errors were encountered: