diff --git a/platform/xdebugger-impl/frontend/src/com/intellij/platform/debugger/impl/frontend/FrontendXBreakpointProxy.kt b/platform/xdebugger-impl/frontend/src/com/intellij/platform/debugger/impl/frontend/FrontendXBreakpointProxy.kt index 7ec8c2c6500b..9d2bad08d880 100644 --- a/platform/xdebugger-impl/frontend/src/com/intellij/platform/debugger/impl/frontend/FrontendXBreakpointProxy.kt +++ b/platform/xdebugger-impl/frontend/src/com/intellij/platform/debugger/impl/frontend/FrontendXBreakpointProxy.kt @@ -346,7 +346,7 @@ internal open class FrontendXBreakpointProxy( } // TODO: do we need to pass XBreakpointType.getBreakpointComparator somehow? // it always uses timestamps, so it seems like we can keep comparing by timestamps. - return getTimestamp().compareTo(other.getTimestamp()) + return other.getTimestamp() compareTo this.getTimestamp() } override fun equals(other: Any?): Boolean {