サンプル
public class
ClassA
{
public void
method(
int
Variable1,
char
variable1) {
}
}
ソリューション
サンプルでは、 'method()' のパラメーターの違いは、'v' の大/小文字のみです。 これは避けてください。
public class
ClassA
{
public void
method(
int
Variable1,
char
variable2) {
}
}