Parcelable, minor: Rename MagicParcel to Parcelize

This commit is contained in:
Yan Zhulanow
2017-07-26 17:57:22 +03:00
parent f29cf07fa4
commit ea1068a822
51 changed files with 102 additions and 102 deletions
@@ -1,6 +1,6 @@
package test
import kotlinx.android.parcel.MagicParcel
import kotlinx.android.parcel.Parcelize
import android.os.Parcelable
import android.os.Parcel
@@ -9,5 +9,5 @@ open class Delegate : Parcelable {
override fun describeContents() = 0
}
@MagicParcel
@Parcelize
class Test : Parcelable <error descr="[PARCELABLE_DELEGATE_IS_NOT_ALLOWED] Delegating 'Parcelable' is now allowed">by</error> Delegate()