Skip to content

Commit

Permalink
Remove unused argument (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
lenemter authored Dec 29, 2023
1 parent 5706459 commit 6f98e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Widgets/NotificationsList.vala
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class Notifications.NotificationsList : Gtk.ListBox {
row_activated.connect (on_row_activated);
}

public async void add_entry (Notification notification, bool add_to_session = true, bool write_file = true) {
public async void add_entry (Notification notification, bool add_to_session = true) {
var entry = new NotificationEntry (notification);

if (app_entries[notification.desktop_id] != null) {
Expand Down

0 comments on commit 6f98e9d

Please sign in to comment.