Parcelable: Fix signature for Serializable Parcel serializer (KT-19749)

This commit is contained in:
Yan Zhulanow
2017-08-21 18:25:15 +03:00
committed by Yan Zhulanow
parent 32c02161cd
commit eee28d8507
4 changed files with 37 additions and 6 deletions
@@ -194,8 +194,8 @@ interface ParcelSerializer {
}
type.isSerializable() -> NullCompliantObjectParcelSerializer(asmType,
Method("writeSerializable"),
Method("readSerializable"))
Method("writeSerializable", "(Ljava/io/Serializable;)V"),
Method("readSerializable", "()Ljava/io/Serializable;"))
else -> {
if (strict && !type.annotations.hasAnnotation(RAWVALUE_ANNOTATION_FQNAME))