From 96e22a23df66f4fc8b7ffce011e3799f4f7fa880 Mon Sep 17 00:00:00 2001 From: Anastasia Ivanova Date: Tue, 1 Dec 2020 17:02:03 +0100 Subject: [PATCH] FUS: fix references in KDoc GitOrigin-RevId: d6889bcfa5dda6e08192a098719184a8de28b1c3 --- .../statistic/actions/RecordStateStatisticsEventLogAction.kt | 4 ++-- .../com/intellij/internal/statistic/utils/StatisticsUtil.kt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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()