mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 20:05:16 +07:00
PR#2202 GitOrigin-RevId: 61a810471015ee74962b33b1fce90891d3cd2771
14 lines
264 B
Java
14 lines
264 B
Java
// "Replace '(FooBar)foo' with 'foobar'" "false"
|
|
|
|
class FooBar {
|
|
public int baz;
|
|
|
|
int method(Object foo) {
|
|
FooBar foobar = (FooBar)foo;
|
|
for (int i = 0; i < 10; i++) {
|
|
baz = ((FooBar<caret>)foo).baz;
|
|
foobar = null;
|
|
}
|
|
return -1;
|
|
}
|
|
} |