1

enter image description hereWhen i put the breakpoint in my code , sometime i just see the blue circle and sometime glass icon . Whats the difference?

I am using eclipse lune

scott miles
  • 1,511
  • 2
  • 21
  • 36
  • Your answer is probably here : http://stackoverflow.com/questions/4079000/what-different-breakpoint-icons-mean-in-eclipse – Arnaud Dec 13 '15 at 11:23
  • Somehow i am not able to paste the image from opera. http://stackoverflow.com/questions/4079000/what-different-breakpoint-icons-mean-in-eclipse does not answer my question – scott miles Dec 13 '15 at 12:46
  • @Tunaki please have a look at screenshot – scott miles Dec 13 '15 at 12:57

1 Answers1

0
  • Blue ball: regular breakpoint, active (possibly with a hit count set)
  • Blue ball with a tick: is only shown when you have an active debug session at that line. It means your breakpoint is active and attached to the bytecode running in debug mode. Debugger cannot (and will never) stop at breakpoints without that "tick".
Abdelhak
  • 8,299
  • 4
  • 22
  • 36