mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 14:31:48 +07:00
a117b21680
GitOrigin-RevId: 45952b11139cf435e218ddd9c3ba57e237230eed
9 lines
172 B
Java
9 lines
172 B
Java
// "Replace with 'Boolean.TRUE.equals(flag)'" "false"
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Test {
|
|
int test(@Nullable Integer i) {
|
|
return <caret>i;
|
|
}
|
|
} |