Remove unused argument.

Bug: 267476663
Test: atest SafetyCenterFunctionalTestCases
Relnote: N/A
Change-Id: I23d7daa29567b8da646f2898ba56fe58b48cc512
diff --git a/service/java/com/android/safetycenter/notifications/SafetyCenterNotificationFactory.java b/service/java/com/android/safetycenter/notifications/SafetyCenterNotificationFactory.java
index 4e88cf3..4a141b3 100644
--- a/service/java/com/android/safetycenter/notifications/SafetyCenterNotificationFactory.java
+++ b/service/java/com/android/safetycenter/notifications/SafetyCenterNotificationFactory.java
@@ -271,7 +271,7 @@
         if (issueAction.willResolve()) {
             return getReceiverPendingIntentForResolvingAction(issueKey, issueAction);
         } else {
-            return getDirectPendingIntentForNonResolvingAction(issueKey, issueAction);
+            return getDirectPendingIntentForNonResolvingAction(issueAction);
         }
     }
 
@@ -292,7 +292,7 @@
     }
 
     private PendingIntent getDirectPendingIntentForNonResolvingAction(
-            SafetyCenterIssueKey issueKey, SafetySourceIssue.Action issueAction) {
+            SafetySourceIssue.Action issueAction) {
         return issueAction.getPendingIntent();
     }
 }