mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[rd debugger] fix breakpoints sorting, IJPL-201539
^IJPL-201539 fixed GitOrigin-RevId: a72a0cc72648099435d0e9a4a5c690d556c5ecf8
This commit is contained in:
committed by
intellij-monorepo-bot
parent
321b9c6624
commit
27c1a57b63
+1
-1
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user