Files
2023-04-27 09:56:52 +00:00

15 lines
328 B
Java

import java.util.List;
// IDEA-318996
public class BoxedBooleanNullableTrue {
protected void doSomething(String s, List<Boolean> list) {
Boolean value = checkString(s) ? true : null;
if (list != null) {
list.add(value);
}
}
private boolean checkString(String s) {
return s.equals("la la la");
}
}