style(notifications/action): fix whitespaces

This commit is contained in:
FineFindus
2023-02-27 21:20:02 +01:00
parent bddf024ba0
commit b38a460a02

View File

@@ -228,8 +228,7 @@ public class PushNotificationReceiver extends BroadcastReceiver{
notificationIntent.putExtra("accountID", accountID); notificationIntent.putExtra("accountID", accountID);
notificationIntent.putExtra("notificationAction", action.ordinal()); notificationIntent.putExtra("notificationAction", action.ordinal());
notificationIntent.putExtra("notification", Parcels.wrap(notification)); notificationIntent.putExtra("notification", Parcels.wrap(notification));
PendingIntent actionPendingIntent = PendingIntent actionPendingIntent = PendingIntent.getBroadcast(context, new Random().nextInt(), notificationIntent, PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_ONE_SHOT);
PendingIntent.getBroadcast(context, new Random().nextInt(), notificationIntent, PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_ONE_SHOT);
return new Notification.Action.Builder(null, title, actionPendingIntent).build(); return new Notification.Action.Builder(null, title, actionPendingIntent).build();
} }