File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
plugin/src/main/kotlin/spp/jetbrains/sourcemarker/instrument/ui/model Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1717package spp.jetbrains.sourcemarker.instrument.ui.model
1818
1919import spp.protocol.instrument.LiveInstrumentType
20+ import spp.protocol.instrument.event.LiveInstrumentApplied
2021import spp.protocol.instrument.event.LiveInstrumentEvent
21- import spp.protocol.instrument.event.LiveInstrumentHit
2222import spp.protocol.instrument.event.LiveInstrumentRemoved
2323import java.time.Instant
2424
@@ -47,7 +47,7 @@ data class InstrumentOverview(
4747 " Complete"
4848 } else if (events.any { it is LiveInstrumentRemoved && it.cause != null }) {
4949 " Error"
50- } else if (events.any { it is LiveInstrumentHit }) {
50+ } else if (events.any { it is LiveInstrumentApplied }) {
5151 " Active"
5252 } else {
5353 " Pending"
You can’t perform that action at this time.
0 commit comments