1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 12:25:35 +02:00

Display 'breakpoint hit' message in Debug view.

This commit is contained in:
Mikhail Khodjaiants 2002-09-20 13:51:36 +00:00
parent 1bd7e22639
commit f22e80eb05

View file

@ -335,12 +335,10 @@ public class CDTDebugModelPresentation extends LabelProvider
{ {
return target.getName() + " (Watchpoint is out of scope)"; return target.getName() + " (Watchpoint is out of scope)";
} }
/*
if ( info != null && info instanceof ICDIBreakpointHit ) if ( info != null && info instanceof ICDIBreakpointHit )
{ {
return target.getName() + " (Breakpoint hit)"; return target.getName() + " (Breakpoint hit)";
} }
*/
} }
} }
} }