mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 08:27:11 +07:00
GitOrigin-RevId: 1194b033814fac3bdf672e8d3a4d7ccefc4dc35a
9 lines
180 B
Java
9 lines
180 B
Java
// "Change 1st parameter of method 'foo()' from 'String' to 'void'" "false"
|
|
public class S {
|
|
void bar() {}
|
|
void foo(String s) {}
|
|
{
|
|
foo(b<caret>ar());
|
|
}
|
|
}
|
|
|