From cffb80c86a32f50fe6d3af1d063d930a60e3ec56 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 19 Mar 2015 09:58:38 +0100 Subject: [PATCH] Suppress documentation for the kotlin.internal package --- core/builtins/src/kotlin/internal/progressionUtil.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/builtins/src/kotlin/internal/progressionUtil.kt b/core/builtins/src/kotlin/internal/progressionUtil.kt index 76cf7f0ed12..68632d851ea 100644 --- a/core/builtins/src/kotlin/internal/progressionUtil.kt +++ b/core/builtins/src/kotlin/internal/progressionUtil.kt @@ -48,6 +48,7 @@ private fun differenceModulo(a: Long, b: Long, c: Long): Long { * @param end ending bound for the progression * @param increment increment, or difference of successive elements in the progression * @return the final element of the progression + * @suppress */ public fun getProgressionFinalElement(start: Int, end: Int, increment: Int): Int { if (increment > 0) { @@ -69,6 +70,7 @@ public fun getProgressionFinalElement(start: Int, end: Int, increment: Int): Int * @param end ending bound for the progression * @param increment increment, or difference of successive elements in the progression * @return the final element of the progression + * @suppress */ public fun getProgressionFinalElement(start: Long, end: Long, increment: Long): Long { if (increment > 0) {