I am using Eclipse Indigo (3.7.0), with JDK 1.6.0_22, and I am running into an issue.

enter image description here

In the screenshot above, I set two breakpoints, but then only the breakpoint at line 281 is hitting, not the one at line 274. I tried cleaning my project via Project->Clean, adding -clean to the eclipse.ini file in the Eclipse install directory, restarting my computer, and restarting Eclipse, but they all didn't work. I am running Windows XP Pro SP3.

Any ideas? Thanks!

link|improve this question

It will only stop if the blue dot has a hook attached, but neither has? Or what do you see when you start debugging? – flob Sep 9 '11 at 21:24
Maybe the compiler took that line of code out during the optimization phase. – pablosaraiva Sep 9 '11 at 21:25
Is that breakpoint visible from the Debug menu? You should be able to bring up a view of all breakpoints and make sure it's checked. – Dan W Sep 9 '11 at 21:30
Hi all, I fixed the problem. The project I'm working on requires the Scala IDE plugin for Eclipse as I just found out that there are some Scala code that I didn't write. The Scala compiler was needed to work in conjunction with the Java compiler, so in the end, the Java code that I was working on wasn't compiling into new bytecode, which is the reason why the breakpoints were not being hit. It's just one of those very rare things that happen. – denshaotoko Sep 9 '11 at 23:53
Could you write that as an explicit answer and mark that as the right answer? This would allow others of the find a question with an answer, and would show the ones that like to help that help is no more needed. – mliebelt Sep 10 '11 at 15:08
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

I fixed the problem. The project I'm working on requires the Scala IDE plugin for Eclipse as I just found out that there are some Scala code that I didn't write. The Scala compiler was needed to work in conjunction with the Java compiler, so in the end, the Java code that I was working on wasn't compiling into new bytecode, which is the reason why the breakpoints were not being hit. It's just one of those very rare things that happen.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.