Parcelable, minor: Change error message

This commit is contained in:
Yan Zhulanow
2017-07-31 16:38:17 +03:00
parent 448fa8495a
commit 5ff014f89d
@@ -70,7 +70,7 @@ object DefaultErrorMessagesAndroid : DefaultErrorMessages.Extension {
"'Parcelable' constructor parameter should be 'val' or 'var'")
MAP.put(ErrorsAndroid.PROPERTY_WONT_BE_SERIALIZED,
"Property would not be serialized into a 'Parcel'. Add '@Transient' annotation to it")
"Property would not be serialized into a 'Parcel'. Add '@Transient' annotation to remove the warning")
MAP.put(ErrorsAndroid.OVERRIDING_WRITE_TO_PARCEL_IS_NOT_ALLOWED,
"Overriding 'writeToParcel' is not allowed. Use 'Parceler' companion object instead.")