Files
codeql/java/ql/test/query-tests/WrongNanComparison/WrongNanComparison.expected
2022-09-26 12:15:25 +02:00

3 lines
289 B
Plaintext

| Test.java:3:9:3:23 | ... == ... | This comparison will always yield the same result since 'NaN != NaN'. Consider using Double.isNaN instead. |
| Test.java:4:9:4:22 | ... == ... | This comparison will always yield the same result since 'NaN != NaN'. Consider using Float.isNaN instead. |