You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What should the behavior be when writeToParcel is already implemented? Fail? No-op? Emit only the describeContents method (and then what happens if this is implemented too)?
The text was updated successfully, but these errors were encountered:
With standard AutoValue, anything you implement is not overridden so that your custom implementation is executed. I would expect this would apply to writeToParcel as well.
In the case of both having been implemented by the user, I guess we can change applicable() to return false, since no implementation is needed, assuming we have that information early enough.
What should the behavior be when
writeToParcel
is already implemented? Fail? No-op? Emit only thedescribeContents
method (and then what happens if this is implemented too)?The text was updated successfully, but these errors were encountered: