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

Commit d52a271e authored by Yohei Yukawa's avatar Yohei Yukawa
Browse files

Remove @UnsupportedAppUsage from IInputConnectionWrapper#mLock

We are mostly confident that this @UnsupportedAppUsage was a false
positive.

Bug: 170729553
Fix: 194299196
Test: presubmit
Change-Id: I0967db5742dcfa1ef55046cac283a683f1a56a94
parent 88d597b9
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -18,8 +18,6 @@ package com.android.internal.view;

import android.annotation.NonNull;
import android.annotation.Nullable;
import android.compat.annotation.UnsupportedAppUsage;
import android.os.Build;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
@@ -93,7 +91,7 @@ public final class IInputConnectionWrapper extends IInputContext.Stub {

    private Looper mMainLooper;
    private Handler mH;
    @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553)

    private final Object mLock = new Object();
    @GuardedBy("mLock")
    private boolean mFinished = false;