fun validateReport()

in src/main/kotlin/com/intellij/internal/statistic/eventLog/validator/SensitiveDataValidator.kt [75:78]


  fun validateReport(report: FusReport): FusReport? {
    val safeEvents = report.events.mapNotNull { validateEvent(it) }
    return if (safeEvents.isNotEmpty()) FusReport(safeEvents) else null
  }