mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[analyzer] Fix IOOBE in setTrace notification
GitOrigin-RevId: d571258269284664d678c66c87e581a83f0acf83
This commit is contained in:
committed by
intellij-monorepo-bot
parent
02caa4ea03
commit
2748e23311
@@ -15,8 +15,16 @@ data class LogTraceParams(
|
||||
val verbose: String?
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class SetTraceParams(
|
||||
/**
|
||||
* The new value that should be assigned to the trace setting.
|
||||
*/
|
||||
val value: TraceValue,
|
||||
)
|
||||
|
||||
val LogTraceNotificationType: NotificationType<LogTraceParams> =
|
||||
NotificationType("\$/logTrace", LogTraceParams.serializer())
|
||||
|
||||
val SetTraceNotificationType: NotificationType<TraceValue> =
|
||||
NotificationType("\$/setTrace", TraceValue.serializer())
|
||||
val SetTraceNotificationType: NotificationType<SetTraceParams> =
|
||||
NotificationType("\$/setTrace", SetTraceParams.serializer())
|
||||
Reference in New Issue
Block a user