mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
10 lines
171 B
Java
10 lines
171 B
Java
// "Replace '(FooBar)foo' with 'foobar'" "true"
|
|
|
|
class FooBar {
|
|
public int baz;
|
|
|
|
int method(Object foo) {
|
|
FooBar foobar = (FooBar)foo;
|
|
return foobar.baz;
|
|
}
|
|
} |