Fix typo in DefaultErrorMessagesAndroid

"Delegating 'Parcelable' is now allowed" -> "Delegating 'Parcelable' is not allowed"
This commit is contained in:
Egor Neliuba
2018-03-12 21:55:18 +02:00
committed by Yan Zhulanow
parent 83ec49db31
commit 4fd076e4f4
@@ -45,7 +45,7 @@ object DefaultErrorMessagesAndroid : DefaultErrorMessages.Extension {
"'Parcelable' should be a class")
MAP.put(ErrorsAndroid.PARCELABLE_DELEGATE_IS_NOT_ALLOWED,
"Delegating 'Parcelable' is now allowed")
"Delegating 'Parcelable' is not allowed")
MAP.put(ErrorsAndroid.PARCELABLE_SHOULD_NOT_BE_ENUM_CLASS,
"'Parcelable' should not be a 'enum class'")
@@ -102,4 +102,4 @@ object DefaultErrorMessagesAndroid : DefaultErrorMessages.Extension {
"{0} should be annotated with ''@Parcelize''",
RENDER_CLASS_OR_OBJECT)
}
}
}