mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 04:07:09 +07:00
12 lines
250 B
Java
12 lines
250 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
class Contracts {
|
|
|
|
private void checkNotNullValue(@Nullable Object o) {
|
|
assertThat(o).isNotNull();
|
|
System.out.println(o.hashCode());
|
|
}
|
|
|
|
} |