mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 06:39:38 +07:00
13 lines
217 B
Java
13 lines
217 B
Java
// "Replace '(FooBar)foo' with 'foobar'" "true"
|
|
|
|
import java.lang.Object;
|
|
|
|
class FooBar {
|
|
public int baz;
|
|
|
|
int method(Object foo) {
|
|
FooBar foobar = (FooBar)foo;
|
|
Object o = foobar.baz;
|
|
foo = null;
|
|
}
|
|
} |