mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
10 lines
208 B
Java
10 lines
208 B
Java
// "Replace with 'integer != null ?:'" "true"
|
|
|
|
import java.lang.Integer;
|
|
|
|
class A{
|
|
void test(){
|
|
Integer integer = null;
|
|
int i = integer != null ? integer.intValue() : <selection>0</selection>;
|
|
}
|
|
} |