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