mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
14 lines
459 B
Kotlin
Vendored
14 lines
459 B
Kotlin
Vendored
// INTENTION_TEXT: Add Parcelable Implementation
|
|
// INSPECTION_CLASS: org.jetbrains.android.inspections.klint.AndroidLintInspectionToolProvider$AndroidKLintParcelCreatorInspection
|
|
import android.os.Parcel
|
|
import android.os.Parcelable
|
|
|
|
class <caret>MissingCreator : Parcelable {
|
|
override fun writeToParcel(dest: Parcel?, flags: Int) {
|
|
TODO("not implemented")
|
|
}
|
|
|
|
override fun describeContents(): Int {
|
|
TODO("not implemented")
|
|
}
|
|
} |