I am debugging some Java code with Eclipse 3.4.2. I have disabled all the breakpoints, yet the debugger still stops at a specific line. This point is several lines before a null pointer exception
is triggered. Curiously, when I run the same code/run configuration, but not in the debugger, the null pointer exception does not occur.
Also, if I step through this code from the beginning of the method causing the null pointer exception
, using the exact same input, there is no problem. It only occurs when I remove all breakpoints but Eclipse decides to stop there regardless.
Why could this be happening?