()
| 617 | final LineID newCurrentLine = locationToLineID(be.location()); |
| 618 | javax.swing.SwingUtilities.invokeLater(new Runnable() { |
| 619 | @Override |
| 620 | public void run() { |
| 621 | editor.setCurrentLine(newCurrentLine); |
| 622 | editor.deactivateStep(); |
| 623 | editor.deactivateContinue(); |
| 624 | } |
| 625 | }); |
| 626 | |
| 627 | // hit a breakpoint during a step, need to cancel the step. |
nothing calls this directly
no test coverage detected