Files
Tagir Valeevandintellij-monorepo-bot 8e242ccfca [java-dfa] Find the cause: cosmetic changes in messages
GitOrigin-RevId: 01b45074f9c8adc03bc788958ecba2fde134e55d
2021-06-23 04:51:46 +00:00

15 lines
385 B
Java

/*
Value is always false (Objects.isNull(s.trim()); line#11)
According to inferred contract, method 'isNull' returns 'false' when s.trim() != null (isNull; line#11)
Method 'trim' is externally annotated as 'non-null' (trim; line#11)
*/
import java.util.Objects;
class Test {
void test(String s) {
if (<selection>Objects.isNull(s.trim())</selection>) {
}
}
}