mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 12:17:12 +07:00
Fixes IDEA-289497 'NullPointerException' recommendations contradiction GitOrigin-RevId: 07be3f2ee5ce03bd7380b563806fcad03fb2a0f5
5 lines
153 B
Java
5 lines
153 B
Java
// "Assert 'myFoo != null'" "true"
|
|
class A{
|
|
private final String myFoo = Math.random() > 0.5 ? "" : null;
|
|
String myBar = myFoo.su<caret>bstring(0);
|
|
} |