Files
openide/java/java-tests/testData/refactoring/extractMethod/NotNullArgumentAnonymousClassInIf.java

18 lines
402 B
Java

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
class C {
void foo(@Nullable Object o) {
if (o != null) {
<selection>Runnable r = new Runnable() {
@Override
public void run() {
bar(o);
}
};</selection>
}
}
void bar(@NotNull Object o) {
}
}