summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mark Renouf <mrenouf@google.com> 2024-03-29 15:18:59 -0400
committer Mark Renouf <mrenouf@google.com> 2024-03-29 15:19:03 -0400
commitff2d0537d051696b8ffcdab3f671954b0abd9c54 (patch)
tree4453628a4445ec0b54820d7d461f7c7e1aef64de
parent8c3b2b5ad115949ddf11e3f888260565ea0fbb2a (diff)
Fix wrong Suppress annotation for Kotlin
Bug: 262391811 Fix: 331856584 Change-Id: I3d1bfa6c9c145e20c9f609f0679ad252fb3e1d17
-rw-r--r--packages/SystemUI/src/com/android/systemui/screenshot/data/repository/ProfileTypeRepositoryImpl.kt3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/screenshot/data/repository/ProfileTypeRepositoryImpl.kt b/packages/SystemUI/src/com/android/systemui/screenshot/data/repository/ProfileTypeRepositoryImpl.kt
index 42ad21bdf5e9..17ddf802b172 100644
--- a/packages/SystemUI/src/com/android/systemui/screenshot/data/repository/ProfileTypeRepositoryImpl.kt
+++ b/packages/SystemUI/src/com/android/systemui/screenshot/data/repository/ProfileTypeRepositoryImpl.kt
@@ -13,11 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-@file:SuppressLint("MissingPermission")
+@file:Suppress("MissingPermission")
package com.android.systemui.screenshot.data.repository
-import android.annotation.SuppressLint
import android.annotation.UserIdInt
import android.os.UserManager
import com.android.systemui.dagger.qualifiers.Background