14 lines
412 B
Kotlin
Vendored
14 lines
412 B
Kotlin
Vendored
// INTENTION_TEXT: Add Parcelable Implementation
|
|
// INSPECTION_CLASS: com.android.tools.idea.lint.AndroidLintParcelCreatorInspection
|
|
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")
|
|
}
|
|
} |