From 38aec7333be93b27f68f1a7102e01876caf96f52 Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Mon, 29 Jan 2024 12:03:07 +0100 Subject: [PATCH] Drop mentioning of KT-63955 in some ABI difference comments In fact, the commit c3926219 should do it before because the relevant difference was removed in this commit --- .../codegen/box/casts/mutableCollections/asWithMutable.kt | 2 +- .../codegen/box/casts/mutableCollections/isWithMutable.kt | 2 +- .../box/casts/mutableCollections/reifiedAsWithMutable.kt | 2 +- .../box/casts/mutableCollections/reifiedIsWithMutable.kt | 2 +- .../box/casts/mutableCollections/reifiedSafeAsWithMutable.kt | 2 +- .../codegen/box/casts/mutableCollections/safeAsWithMutable.kt | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/compiler/testData/codegen/box/casts/mutableCollections/asWithMutable.kt b/compiler/testData/codegen/box/casts/mutableCollections/asWithMutable.kt index 45acbfebf29..c74249085ee 100644 --- a/compiler/testData/codegen/box/casts/mutableCollections/asWithMutable.kt +++ b/compiler/testData/codegen/box/casts/mutableCollections/asWithMutable.kt @@ -1,5 +1,5 @@ // WITH_STDLIB -// JVM_ABI_K1_K2_DIFF: KT-63955, KT-63828 +// JVM_ABI_K1_K2_DIFF: KT-63828 class Itr : Iterator by ArrayList().iterator() class MItr : MutableIterator by ArrayList().iterator() diff --git a/compiler/testData/codegen/box/casts/mutableCollections/isWithMutable.kt b/compiler/testData/codegen/box/casts/mutableCollections/isWithMutable.kt index f14fbdca13a..8fca5ea51bb 100644 --- a/compiler/testData/codegen/box/casts/mutableCollections/isWithMutable.kt +++ b/compiler/testData/codegen/box/casts/mutableCollections/isWithMutable.kt @@ -1,5 +1,5 @@ // WITH_STDLIB -// JVM_ABI_K1_K2_DIFF: KT-63955, KT-63828 +// JVM_ABI_K1_K2_DIFF: KT-63828 class Itr : Iterator by ArrayList().iterator() class MItr : MutableIterator by ArrayList().iterator() diff --git a/compiler/testData/codegen/box/casts/mutableCollections/reifiedAsWithMutable.kt b/compiler/testData/codegen/box/casts/mutableCollections/reifiedAsWithMutable.kt index a797097bc87..902c15e4a70 100644 --- a/compiler/testData/codegen/box/casts/mutableCollections/reifiedAsWithMutable.kt +++ b/compiler/testData/codegen/box/casts/mutableCollections/reifiedAsWithMutable.kt @@ -1,5 +1,5 @@ // WITH_STDLIB -// JVM_ABI_K1_K2_DIFF: KT-63955, KT-63828 +// JVM_ABI_K1_K2_DIFF: KT-63828 class Itr : Iterator by ArrayList().iterator() class MItr : MutableIterator by ArrayList().iterator() diff --git a/compiler/testData/codegen/box/casts/mutableCollections/reifiedIsWithMutable.kt b/compiler/testData/codegen/box/casts/mutableCollections/reifiedIsWithMutable.kt index 90148d87268..a52d33ea7c4 100644 --- a/compiler/testData/codegen/box/casts/mutableCollections/reifiedIsWithMutable.kt +++ b/compiler/testData/codegen/box/casts/mutableCollections/reifiedIsWithMutable.kt @@ -1,5 +1,5 @@ // WITH_STDLIB -// JVM_ABI_K1_K2_DIFF: KT-63955, KT-63828 +// JVM_ABI_K1_K2_DIFF: KT-63828 class Itr : Iterator by ArrayList().iterator() class MItr : MutableIterator by ArrayList().iterator() diff --git a/compiler/testData/codegen/box/casts/mutableCollections/reifiedSafeAsWithMutable.kt b/compiler/testData/codegen/box/casts/mutableCollections/reifiedSafeAsWithMutable.kt index bbe5f9dc730..fcf63539688 100644 --- a/compiler/testData/codegen/box/casts/mutableCollections/reifiedSafeAsWithMutable.kt +++ b/compiler/testData/codegen/box/casts/mutableCollections/reifiedSafeAsWithMutable.kt @@ -1,5 +1,5 @@ // WITH_STDLIB -// JVM_ABI_K1_K2_DIFF: KT-63955, KT-63828 +// JVM_ABI_K1_K2_DIFF: KT-63828 class Itr : Iterator by ArrayList().iterator() class MItr : MutableIterator by ArrayList().iterator() diff --git a/compiler/testData/codegen/box/casts/mutableCollections/safeAsWithMutable.kt b/compiler/testData/codegen/box/casts/mutableCollections/safeAsWithMutable.kt index d824da1c954..d289f76b6a3 100644 --- a/compiler/testData/codegen/box/casts/mutableCollections/safeAsWithMutable.kt +++ b/compiler/testData/codegen/box/casts/mutableCollections/safeAsWithMutable.kt @@ -1,5 +1,5 @@ // WITH_STDLIB -// JVM_ABI_K1_K2_DIFF: KT-63955, KT-63828 +// JVM_ABI_K1_K2_DIFF: KT-63828 class Itr : Iterator by ArrayList().iterator() class MItr : MutableIterator by ArrayList().iterator()