diff options
author | 2024-12-30 11:43:36 -0800 | |
---|---|---|
committer | 2024-12-30 16:56:45 -0800 | |
commit | 0fb304f0b33fb4b0e769d7fc750181c45c83e908 (patch) | |
tree | bd236e11eada19392d6039c94422861c92439811 | |
parent | 2bd68623fd928b42cc7af6f7815b0b69ab965d1d (diff) |
Replace last usage of Preconditions.checkNotNull() in Permission code
LOW_COVERAGE_REASON=b/386850470
Bug: 385912424
Flag: EXEMPT bug fix
Test: build
Relnote: N/A
Change-Id: Ie7a14d7d4ea5384d8ffc427bd6e9a65f8e6071b2
-rw-r--r-- | PermissionController/tests/mocking/src/com/android/permissioncontroller/tests/mocking/privacysources/NotificationListenerCheckInternalTest.kt | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/PermissionController/tests/mocking/src/com/android/permissioncontroller/tests/mocking/privacysources/NotificationListenerCheckInternalTest.kt b/PermissionController/tests/mocking/src/com/android/permissioncontroller/tests/mocking/privacysources/NotificationListenerCheckInternalTest.kt index bc00d3bc8..4bb021b3d 100644 --- a/PermissionController/tests/mocking/src/com/android/permissioncontroller/tests/mocking/privacysources/NotificationListenerCheckInternalTest.kt +++ b/PermissionController/tests/mocking/src/com/android/permissioncontroller/tests/mocking/privacysources/NotificationListenerCheckInternalTest.kt @@ -30,7 +30,6 @@ import android.safetycenter.SafetyCenterManager import android.safetycenter.SafetyEvent import android.safetycenter.SafetySourceData import android.safetycenter.SafetySourceIssue -import androidx.core.util.Preconditions import androidx.test.core.app.ApplicationProvider import androidx.test.ext.junit.runners.AndroidJUnit4 import androidx.test.filters.SdkSuppress @@ -464,9 +463,7 @@ class NotificationListenerCheckInternalTest { } val safetySourceIssue = - Preconditions.checkNotNull( - notificationListenerCheck.createSafetySourceIssue(testComponent, 0) - ) + checkNotNull(notificationListenerCheck.createSafetySourceIssue(testComponent, 0)) val expectedId = "notification_listener_${testComponent.flattenToString()}" val expectedTitle = |