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

Commit f0d91d6a authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[res] Make ApkAssets.toString() callable after close()" into main

parents 1ae30675 dcc5a963
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -367,7 +367,7 @@ public final class ApkAssets {
    /** @hide */
    public @NonNull String getDebugName() {
        synchronized (this) {
            return nativeGetDebugName(mNativePtr);
            return mNativePtr == 0 ? "<destroyed>" : nativeGetDebugName(mNativePtr);
        }
    }