We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi!
Please, look the code of function nodesAreEqual (NokogiriHelpers.java, line 551):
return (((a == null) && (a == null)) || (a != null) && (b != null) && (b.equals(a)));
(a == null) is checked twice. May be it should be:
return (((a == null) && (b == null)) || (a != null) && (b != null) && (b.equals(a)));
This possible defect found by AppChecker
The text was updated successfully, but these errors were encountered:
119bcb0
No branches or pull requests
Hi!
Please, look the code of function nodesAreEqual (NokogiriHelpers.java, line 551):
(a == null) is checked twice.
May be it should be:
This possible defect found by AppChecker
The text was updated successfully, but these errors were encountered: