AP-8446 [*]: dropping descriptions from the codebase

GitOrigin-RevId: 247054fd028e5213c06aedf635c75706268cf177
This commit is contained in:
Roman Shevchenko
2026-02-05 11:51:17 +00:00
committed by intellij-monorepo-bot
parent 56a670b0ef
commit e9e9b1620f
37 changed files with 412 additions and 746 deletions
@@ -7,18 +7,10 @@ import com.intellij.internal.statistic.eventLog.events.EventId1
import com.intellij.internal.statistic.service.fus.collectors.CounterUsagesCollector
internal object DecompilerPresetChangedCollector : CounterUsagesCollector() {
private val GROUP: EventLogGroup = EventLogGroup(
id = "java.decompiler",
version = 1,
recorder = "FUS",
description = "This group contains events originating from the Java Bytecode Decompiler plugin.",
)
private val GROUP: EventLogGroup = EventLogGroup("java.decompiler", 1)
private val DECOMPILER_PRESET_CHANGED: EventId1<DecompilerPreset> = GROUP.registerEvent(
eventId = "decompiler.preset.changed",
eventField1 = EventFields.Enum("preset", DecompilerPreset::class.java),
description = "This event is collected whenever the user manually changes the decompiler preset while viewing decompiled bytecode.",
)
private val DECOMPILER_PRESET_CHANGED: EventId1<DecompilerPreset> =
GROUP.registerEvent("decompiler.preset.changed", EventFields.Enum("preset", DecompilerPreset::class.java))
override fun getGroup(): EventLogGroup = GROUP