reregistering exceptions removed
[idea/community.git] / platform / xdebugger-impl / src / com / intellij / xdebugger / impl / XDebugSessionImpl.java
index 633ad0165fb794ff6ade3cca2512d7043007f883..b9124eb339f128e82b0274945ab136e247c57f86 100644 (file)
@@ -354,20 +354,10 @@ public class XDebugSessionImpl implements XDebugSession {
   }
 
   @Override
-  /**
-   * Causes the same effect as #positionReached, but without changing context,
-   * only updating position highlighting and re-enabling exceptions
-   */
-  public void updateExecutionPosition(boolean updateBreakpoints) {
+  public void updateExecutionPosition() {
     XExecutionStack activeExecutionStack = mySuspendContext.getActiveExecutionStack();
     boolean isTopFrame = activeExecutionStack != null && activeExecutionStack.getTopFrame() == myCurrentStackFrame;
     myDebuggerManager.updateExecutionPoint(myCurrentStackFrame.getSourcePosition(), !isTopFrame);
-
-
-    if (updateBreakpoints) {
-      disableBreakpoints();
-      enableBreakpoints();
-    }
   }