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

Commit 3ce07813 authored by Archisha Baranwal's avatar Archisha Baranwal Committed by Android (Google) Code Review
Browse files

Merge "Remove closeable not found log from ViewCaptureAwareWindowManager." into main

parents 490762fd 3cd81b0a
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -17,7 +17,6 @@
package com.android.app.viewcapture

import android.media.permission.SafeCloseable
import android.util.Log
import android.view.View
import android.view.ViewGroup
import android.view.WindowManager
@@ -63,8 +62,6 @@ class ViewCaptureAwareWindowManager(
            if (viewCaptureCloseableMap.containsKey(view)) {
                viewCaptureCloseableMap[view]?.close()
                viewCaptureCloseableMap.remove(view)
            } else {
                Log.wtf(TAG, "removeView called with view not present in closeable map!")
            }
        }
    }