Merge "Parcel: more stacks printed when recycle twice."

This commit is contained in:
Steven Moreland
2022-09-29 20:48:15 +00:00
committed by Gerrit Code Review

View File

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