mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
19 lines
304 B
Java
19 lines
304 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Foo {
|
|
|
|
void foo(final @Nullable String s, String s2) {
|
|
if (s2 == null) return;
|
|
if (s == null) return;
|
|
|
|
System.out.println(s2);
|
|
|
|
new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
s.hashCode();
|
|
}
|
|
}.run();
|
|
}
|
|
|
|
} |