Parcelable: Fix signature for Serializable Parcel serializer (KT-19749)
This commit is contained in:
committed by
Yan Zhulanow
parent
32c02161cd
commit
eee28d8507
+2
-2
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user