mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
14 lines
198 B
Java
14 lines
198 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class NullTest {
|
|
|
|
public void clear(@Nullable Integer mask) {
|
|
if (mask == null) {
|
|
return;
|
|
}
|
|
|
|
int i = ~mask;
|
|
int i2 = ~mask;
|
|
}
|
|
|
|
} |