Remove obsolete @OptIn(ExperimentalUnsignedTypes::class) annotations

^KT-62510
This commit is contained in:
Ilya Kirillov
2023-10-11 10:43:18 +02:00
committed by Space Team
parent f11cb277cd
commit 86c8f3cc35
3 changed files with 0 additions and 3 deletions
@@ -24,7 +24,6 @@ internal fun KotlinType.minValue(): Long {
}
}
@OptIn(ExperimentalUnsignedTypes::class)
internal fun KotlinType.maxValue(): Long {
return when {
KotlinBuiltIns.isByte(this) -> Byte.MAX_VALUE.toLong()