mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
WI-69485 Move breakpoint definition when Xdebug resolves it to a different line
GitOrigin-RevId: 0eab4837249c91019916ef37a72274a7b6fdf7ba
This commit is contained in:
committed by
intellij-monorepo-bot
parent
c657be7374
commit
dc3cb54964
+6
@@ -33,6 +33,7 @@ import com.intellij.xdebugger.impl.XDebugSessionImpl;
|
||||
import com.intellij.xdebugger.impl.XDebuggerManagerImpl;
|
||||
import com.intellij.xdebugger.impl.XDebuggerUtilImpl;
|
||||
import com.intellij.xdebugger.ui.DebuggerColors;
|
||||
import org.jetbrains.annotations.ApiStatus;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
@@ -324,6 +325,11 @@ public final class XLineBreakpointImpl<P extends XBreakpointProperties> extends
|
||||
}
|
||||
}
|
||||
|
||||
@ApiStatus.Internal
|
||||
public void setLine(final int line) {
|
||||
setLine(line, true);
|
||||
}
|
||||
|
||||
private void setLine(final int line, boolean removeHighlighter) {
|
||||
if (getLine() != line) {
|
||||
myState.setLine(line);
|
||||
|
||||
Reference in New Issue
Block a user