Replace deprecated icons with actual

This commit is contained in:
Dmitry Gridin
2019-04-17 18:00:00 +07:00
parent c41b98f5b9
commit bdb97ed46a
3 changed files with 6 additions and 18 deletions
@@ -361,26 +361,14 @@ class KotlinFieldBreakpoint(
}
}
override fun getInvalidIcon(isMuted: Boolean): Icon {
return when {
isMuted -> AllIcons.Debugger.Db_muted_invalid_field_breakpoint
else -> AllIcons.Debugger.Db_invalid_field_breakpoint
}
}
override fun getVerifiedIcon(isMuted: Boolean): Icon {
return when {
isMuted -> AllIcons.Debugger.Db_muted_verified_field_breakpoint
isMuted -> AllIcons.Debugger.Db_muted_field_breakpoint
else -> AllIcons.Debugger.Db_verified_field_breakpoint
}
}
override fun getVerifiedWarningsIcon(isMuted: Boolean): Icon {
return when {
isMuted -> AllIcons.Debugger.Db_muted_field_warning_breakpoint
else -> AllIcons.Debugger.Db_field_warning_breakpoint
}
}
override fun getVerifiedWarningsIcon(isMuted: Boolean): Icon = AllIcons.Debugger.Db_exception_breakpoint
override fun getCategory() = CATEGORY