Hello!
I found something strange about an eclipse debugger. First of all, when a program runs as a simple Java Application, everything is ok, but when I use debugger some references become null so that I catch NullPointerException.
Here is much more strange example:
System.out.println("the list size is " + list.getSize());
System.out.println("the list size is " + list.getSize());
System.out.println("the list size is " + list.getSize());
System.out.println("the list size is " + list.getSize());
When I start a program the output is : 50, 50, 50, 50.
But when I use debugger the output is : 50, 49, 48, 47. That is REALLY strange, because getSize() method changes nothing. Could you please help me?