Parcel: more stacks printed when recycle twice.
We can print the second stack by default. Bug: 243768096 Test: N/A Change-Id: I49d4e72f87c15fc04ddf94a19ff8f76512b6ebbc
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user