mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 22:09:57 +07:00
17 lines
292 B
Java
17 lines
292 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
public class Bar {
|
|
|
|
void navigateTo(final@Nullable Object p) {
|
|
if (p == null) {
|
|
return;
|
|
}
|
|
|
|
Runnable c = new Runnable() {
|
|
public void run() {
|
|
p.hashCode();
|
|
}
|
|
};
|
|
}
|
|
|
|
} |