mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 21:28:11 +07:00
PR#2202 GitOrigin-RevId: 61a810471015ee74962b33b1fce90891d3cd2771
13 lines
268 B
Java
13 lines
268 B
Java
// "Replace '(FooBar)foo' with 'foobar'" "true"
|
|
|
|
class FooBar {
|
|
public int baz;
|
|
|
|
void method(Object foo, List<String> texts) {
|
|
for (String text : texts) {
|
|
FooBar foobar = (FooBar)foo;
|
|
baz = ((FooBar<caret>)foo).baz;
|
|
foobar = null;
|
|
}
|
|
}
|
|
} |