summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2023-06-21 14:56:09 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2023-06-21 14:56:09 +0000
commit6603c80cee6135f4fff4b6cc3d0a298918123a9e (patch)
treebe3aaf2214949debf7f8254f798b9b6836b56b58 /service
parent9801ac71d07d0e6a03f6b6735622570d0bc958f5 (diff)
parent031ded607091bd8dcc19bf02c2b489b6f877880e (diff)
downloadPermission-6603c80cee6135f4fff4b6cc3d0a298918123a9e.tar.gz
Merge "Remove unused argument." into udc-mainline-prod
Diffstat (limited to 'service')
-rw-r--r--service/java/com/android/safetycenter/notifications/SafetyCenterNotificationFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/service/java/com/android/safetycenter/notifications/SafetyCenterNotificationFactory.java b/service/java/com/android/safetycenter/notifications/SafetyCenterNotificationFactory.java
index 4e88cf320..4a141b33e 100644
--- a/service/java/com/android/safetycenter/notifications/SafetyCenterNotificationFactory.java
+++ b/service/java/com/android/safetycenter/notifications/SafetyCenterNotificationFactory.java
@@ -271,7 +271,7 @@ final class SafetyCenterNotificationFactory {
if (issueAction.willResolve()) {
return getReceiverPendingIntentForResolvingAction(issueKey, issueAction);
} else {
- return getDirectPendingIntentForNonResolvingAction(issueKey, issueAction);
+ return getDirectPendingIntentForNonResolvingAction(issueAction);
}
}
@@ -292,7 +292,7 @@ final class SafetyCenterNotificationFactory {
}
private PendingIntent getDirectPendingIntentForNonResolvingAction(
- SafetyCenterIssueKey issueKey, SafetySourceIssue.Action issueAction) {
+ SafetySourceIssue.Action issueAction) {
return issueAction.getPendingIntent();
}
}