### Search before asking - [X] I searched in the [issues](https://github.com/FasterXML/jackson-databind/issues) and found nothing similar. ### Describe the bug new TextNode(null) == new TextNode(null) returns false. When debugging this issue, it actually causes an NPE in TextNode's `equals` method. ### Version Information Version: 2.13.5 Java 11 Spring Boot: 2.5.15 ### Reproduction ``` TextNode nodeOne = new TextNode(null); TextNode nodeTwo = new TextNode(null); nodeOne.equals(nodeTwo); ``` ### Expected behavior I would expect this to return true as both values are equal ### Additional context _No response_