Merge "Parcel: noop upon double recycle"

This commit is contained in:
Treehugger Robot
2022-11-01 10:15:54 +00:00
committed by Gerrit Code Review

View File

@@ -562,9 +562,11 @@ public final class Parcel {
*/
public final void recycle() {
if (mRecycled) {
Log.w(TAG, "Recycle called on unowned Parcel. (recycle twice?) Here: "
Log.wtf(TAG, "Recycle called on unowned Parcel. (recycle twice?) Here: "
+ Log.getStackTraceString(new Throwable())
+ " Original recycle call (if DEBUG_RECYCLE): ", mStack);
return;
}
mRecycled = true;