Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 31075f29 authored by Steven Moreland's avatar Steven Moreland Committed by Gerrit Code Review
Browse files

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

parents d5c63f58 cdb5f00e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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;