Skip to content

Commit

Permalink
Android-extensions: remove obsolete parcel part
Browse files Browse the repository at this point in the history
Android-extensions is an obsolete plugin that cannot be used since
Kotlin 1.8.0 because an unconditional error is reported. The only reason
it is still not removed from the repo is because there are usages from
the Android part of intellij. In this change, the "parcelize" part of
the plugin and its tests are removed because it's not used from AS.
  • Loading branch information
udalov authored and qodana-bot committed Jul 1, 2024
1 parent 45b21d4 commit 8945d15
Show file tree
Hide file tree
Showing 141 changed files with 0 additions and 11,469 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
package org.jetbrains.kotlin.generators.tests

import org.jetbrains.kotlin.allopen.*
import org.jetbrains.kotlin.android.parcel.AbstractParcelBoxTest
import org.jetbrains.kotlin.android.parcel.AbstractParcelBytecodeListingTest
import org.jetbrains.kotlin.android.parcel.AbstractParcelIrBoxTest
import org.jetbrains.kotlin.android.parcel.AbstractParcelIrBytecodeListingTest
import org.jetbrains.kotlin.android.synthetic.test.AbstractAndroidBoxTest
import org.jetbrains.kotlin.android.synthetic.test.AbstractAndroidBytecodeShapeTest
import org.jetbrains.kotlin.android.synthetic.test.AbstractAndroidIrBoxTest
Expand Down Expand Up @@ -185,22 +181,6 @@ fun main(args: Array<String>) {
testClass<AbstractAndroidBytecodeShapeTest> {
model("codegen/bytecodeShape", recursive = false, extension = null)
}

testClass<AbstractParcelBoxTest> {
model("parcel/box", targetBackend = TargetBackend.JVM)
}

testClass<AbstractParcelIrBoxTest> {
model("parcel/box", targetBackend = TargetBackend.JVM_IR)
}

testClass<AbstractParcelBytecodeListingTest> {
model("parcel/codegen", targetBackend = TargetBackend.JVM)
}

testClass<AbstractParcelIrBytecodeListingTest> {
model("parcel/codegen", targetBackend = TargetBackend.JVM_IR)
}
}

testGroup("plugins/jvm-abi-gen/test", "plugins/jvm-abi-gen/testData") {
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 8945d15

Please sign in to comment.