From c0e09cede8af0f42e7b159f9fe012b3803ddfe99 Mon Sep 17 00:00:00 2001 From: Laiteux Date: Fri, 7 Nov 2025 21:56:47 +0400 Subject: [PATCH] Rename `handleNotification` to `processNotification` --- src/im/angry/openeuicc/bridge/LpaProvider.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/im/angry/openeuicc/bridge/LpaProvider.java b/src/im/angry/openeuicc/bridge/LpaProvider.java index 24df50b..1b44aaa 100644 --- a/src/im/angry/openeuicc/bridge/LpaProvider.java +++ b/src/im/angry/openeuicc/bridge/LpaProvider.java @@ -377,7 +377,7 @@ public class LpaProvider extends ContentProvider if (downloadedProfile == null) return empty(); - handleNotification(args, downloadedProfile.getIccid(), LocalProfileNotification.Operation.Install); + processNotification(args, downloadedProfile.getIccid(), LocalProfileNotification.Operation.Install); return profile(downloadedProfile); } @@ -398,7 +398,7 @@ public class LpaProvider extends ContentProvider ); if (success) - handleNotification(args, iccid[0], LocalProfileNotification.Operation.Delete); + processNotification(args, iccid[0], LocalProfileNotification.Operation.Delete); return success(success); } @@ -426,9 +426,9 @@ public class LpaProvider extends ContentProvider if (success) { if (previousActiveProfile != null) - handleNotification(args, previousActiveProfile.getIccid(), LocalProfileNotification.Operation.Disable); + processNotification(args, previousActiveProfile.getIccid(), LocalProfileNotification.Operation.Disable); - handleNotification(args, iccid[0], LocalProfileNotification.Operation.Enable); + processNotification(args, iccid[0], LocalProfileNotification.Operation.Enable); } return success(success); @@ -517,7 +517,7 @@ public class LpaProvider extends ContentProvider return profiles; } - private void handleNotification(Map args, String iccid, LocalProfileNotification.Operation operation) + private void processNotification(Map args, String iccid, LocalProfileNotification.Operation operation) { try {