diff options
| author | 2024-03-29 15:18:59 -0400 | |
|---|---|---|
| committer | 2024-03-29 15:19:03 -0400 | |
| commit | ff2d0537d051696b8ffcdab3f671954b0abd9c54 (patch) | |
| tree | 4453628a4445ec0b54820d7d461f7c7e1aef64de | |
| parent | 8c3b2b5ad115949ddf11e3f888260565ea0fbb2a (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.kt | 3 |
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 |