Introduce ConcurrentModificationException typealias in stdlib/jvm

This is required to provide the corresponding expect exception in stdlib/common.
Raise deprecation level for constructors declared in common but unsupported in JVM.

#KT-26598
This commit is contained in:
Ilya Gorbunov
2018-09-07 22:33:28 +03:00
parent afb62ffc0c
commit 68c5c0f639
3 changed files with 6 additions and 3 deletions
@@ -24,4 +24,7 @@ package kotlin
@SinceKotlin("1.1") public actual typealias NoSuchElementException = java.util.NoSuchElementException
@Suppress("NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS")
@SinceKotlin("1.3") public actual typealias ConcurrentModificationException = java.util.ConcurrentModificationException
@SinceKotlin("1.1") public actual typealias Comparator<T> = java.util.Comparator<T>