Ich bin mir nicht sicher, warum es diesen Fehler gibt. Die Klammern scheinen richtig zu sein. Eine andere Sache ist, dass das gleiche Programm in Windows-Eclipse funktioniert, aber nicht in Eclipse für Mac. Was könnte der Grund dafür sein?
import java.util.Vector;
public class Debug
{
private int something = 0;
private Vector list = new Vector();
public void firstMethod()
{
thirdMethod(something);
something = something + 1;
}
public void secondMethod()
{
thirdMethod(something);
something = something + 2;
}
public void thirdMethod(int value)
{
something = something + value;
}
public static void main(String[] args)
{
Debug debug = new Debug();
debug.firstMethod();
debug.secondMethod();
}
}