This XML: ``` <Silly xmlns:a="http://www.w3.org/2001/XMLSchema-instance" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <a:Hey i:nil="true"/> <a:Ho>to</a:Ho> </Silly> ``` .. fails to properly deserialize in Jackson 2.10.x. Both `Hey` and `Ho` are null, while in 2.9.9 they were `""` and `"to"`. See test project at https://github.com/henrik242/jackson-xml-problem/tree/jackson-xml-nil-problem First reported in https://github.com/FasterXML/jackson-dataformat-xml/issues/354#issuecomment-566041199 and https://github.com/FasterXML/jackson-dataformat-xml/issues/358#issuecomment-566048921