Skip to content

Commit 1577897

Browse files
committed
No need to be protected
1 parent 202dc1f commit 1577897

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

com.unity.mobile.notifications/Runtime/Android/Plugins/com/unity/androidnotifications/UnityNotificationManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ public int scheduleNotification(Notification.Builder notificationBuilder) {
321321
return id;
322322
}
323323

324-
protected void performNotificationScheduling(int id, Notification.Builder notificationBuilder) {
324+
void performNotificationScheduling(int id, Notification.Builder notificationBuilder) {
325325
Bundle extras = notificationBuilder.getExtras();
326326
long repeatInterval = extras.getLong(KEY_REPEAT_INTERVAL, -1);
327327
long fireTime = extras.getLong(KEY_FIRE_TIME, -1);
@@ -493,7 +493,7 @@ protected static synchronized void saveNotification(Context context, Notificatio
493493
UnityNotificationUtilities.serializeNotification(prefs, notification);
494494
}
495495

496-
protected static String getSharedPrefsNameByNotificationId(String id)
496+
static String getSharedPrefsNameByNotificationId(String id)
497497
{
498498
return String.format("u_notification_data_%s", id);
499499
}

0 commit comments

Comments
 (0)