mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 17:47:53 +07:00
GitOrigin-RevId: 95bd6ad84ace485bca5699192c4dfc161397736b
6 lines
225 B
Java
6 lines
225 B
Java
// "Box primitive value in conditional branch" "false"
|
|
class Test {
|
|
public static void main(String strictArgument) {
|
|
boolean strict = strictArgument == null ? false : strictArgument.isEmpty() ? true : <caret>null;
|
|
}
|
|
} |