diff --git a/platform/statistics/devkit/src/com/intellij/internal/statistic/actions/RecordStateStatisticsEventLogAction.kt b/platform/statistics/devkit/src/com/intellij/internal/statistic/actions/RecordStateStatisticsEventLogAction.kt index c93c29768a0e..b41b8c003229 100644 --- a/platform/statistics/devkit/src/com/intellij/internal/statistic/actions/RecordStateStatisticsEventLogAction.kt +++ b/platform/statistics/devkit/src/com/intellij/internal/statistic/actions/RecordStateStatisticsEventLogAction.kt @@ -28,9 +28,9 @@ import com.intellij.openapi.vfs.LocalFileSystem /** * Collects the data from all state collectors and record it in event log. * - * @see ApplicationUsagesCollector + * @see com.intellij.internal.statistic.service.fus.collectors.ApplicationUsagesCollector * - * @see ProjectUsagesCollector + * @see com.intellij.internal.statistic.service.fus.collectors.ProjectUsagesCollector */ internal class RecordStateStatisticsEventLogAction(private val recorderId: String = DEFAULT_RECORDER, private val myShowNotification: Boolean = true) : DumbAwareAction( diff --git a/platform/statistics/src/com/intellij/internal/statistic/utils/StatisticsUtil.kt b/platform/statistics/src/com/intellij/internal/statistic/utils/StatisticsUtil.kt index d07e1524d904..be51914ca408 100644 --- a/platform/statistics/src/com/intellij/internal/statistic/utils/StatisticsUtil.kt +++ b/platform/statistics/src/com/intellij/internal/statistic/utils/StatisticsUtil.kt @@ -30,14 +30,14 @@ object StatisticsUtil { /** * Anonymizes sensitive project properties by rounding it to the next power of two - * @see com.intellij.internal.statistic.collectors.fus.fileTypes.FileTypeUsagesCollector + * See `com.intellij.internal.statistic.collectors.fus.fileTypes.FileTypeUsagesCollector` */ @JvmStatic fun getNextPowerOfTwo(value: Int): Int = if (value <= 1) 1 else Integer.highestOneBit(value - 1) shl 1 /** * Anonymizes sensitive project properties by rounding it to the next value in steps list. - * @see com.intellij.internal.statistic.collectors.fus.fileTypes.FileTypeUsagesCollector + * See `com.intellij.internal.statistic.collectors.fus.fileTypes.FileTypeUsagesCollector` */ fun getCountingStepName(value: Int, steps: List): String { if (steps.isEmpty()) return value.toString()