mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
9 lines
165 B
Java
9 lines
165 B
Java
// "Remove redundant arguments to call 'method(int, String)'" "true"
|
|
class A {
|
|
public A() {
|
|
method(5, "");
|
|
}
|
|
|
|
private void method(int s, String s2) {
|
|
}
|
|
} |