[FIR] Rollback exposure of j.u.List.sort method

This commit is contained in:
Andrey Zinovyev
2021-06-30 17:37:38 +03:00
committed by teamcityserver
parent 221e642d97
commit 02297d2c75
2 changed files with 3 additions and 4 deletions
@@ -1,8 +1,8 @@
// FULL_JDK // FULL_JDK
abstract class A : MutableList<String> { abstract class A : MutableList<String> {
override fun sort(/*0*/ p0: java.util.Comparator<in String>) { <!NOTHING_TO_OVERRIDE!>override<!> fun sort(/*0*/ p0: java.util.Comparator<in String>) {
super.sort(p0) super.<!UNRESOLVED_REFERENCE!>sort<!>(p0)
} }
} }
@@ -98,8 +98,7 @@ object JvmBuiltInsSignatures {
inJavaUtil( inJavaUtil(
"List", "List",
"replaceAll(Ljava/util/function/UnaryOperator;)V", "replaceAll(Ljava/util/function/UnaryOperator;)V"
"sort(Ljava/util/Comparator;)V"
) + ) +
inJavaUtil( inJavaUtil(