Check if there's a breakpoint on a particular line. @param line the line id @return true if a breakpoint is set on the given line, otherwise false
(LineID line)
| 489 | * @return true if a breakpoint is set on the given line, otherwise false |
| 490 | */ |
| 491 | protected boolean hasBreakpoint(LineID line) { |
| 492 | LineBreakpoint bp = breakpointOnLine(line); |
| 493 | return bp != null; |
| 494 | } |
| 495 | |
| 496 | |
| 497 | // /** Print a list of currently set breakpoints. */ |
no test coverage detected