From f1aa75ffed84dd3dc85dd98bee059a56d21f90cd Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Tue, 9 Feb 2021 15:19:05 +0300 Subject: [PATCH] Remove @author tag to conform with the repository policy (cherry picked from commit d99a9c057712b3318350a9b4cd97f1e9ab63d13f) --- .../src/main/kotlin/org/jetbrains/ring/PrimeListBenchmark.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/PrimeListBenchmark.kt b/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/PrimeListBenchmark.kt index c0dbbb3bf9c..0c8d093c09b 100644 --- a/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/PrimeListBenchmark.kt +++ b/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/PrimeListBenchmark.kt @@ -19,8 +19,6 @@ package org.jetbrains.ring /** * This class tests linked list performance * using prime number calculation algorithms - * - * @author Mikhail Glukhikh */ open class PrimeListBenchmark { private var primes: MutableList = mutableListOf()