Reputation: 794
In Eclipse IDE for J2EE development, I'm seeing this new icon on my breakpoints. On all the breakpoints. Not sure why? And what does it mean? Could it be the reason my breakpoints arent working?
Upvotes: 2
Views: 79
Reputation: 33442
It is a Breakpoint Trigger Point icon.
All the other breakpoints that are initially suppressed by triggers will be hit only after any of the trigger points has been hit. All the triggers are disabled after a trigger point is hit and will be re-enabled after the run. Triggers will be rendered with an overlay of "T" and the breakpoints suppressed by the triggers will be rendered with an overlay of "T" with a cut.
Upvotes: 2