mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
9 lines
178 B
Java
9 lines
178 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());
|
|
}
|
|
}
|
|
|