mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
11 lines
192 B
Java
11 lines
192 B
Java
// "Replace '(FooBar)(foo)' with 'foobar'" "true"
|
|
|
|
class FooBar {
|
|
public int baz;
|
|
|
|
int method(Object foo) {
|
|
foobar = null;
|
|
FooBar foobar = (FooBar)foo;
|
|
return foobar.baz;
|
|
}
|
|
} |