mirror of
https://github.com/ppy/osu.git
synced 2025-02-14 07:22:54 +08:00
Remove redundant lambda signature parentheses
:/
This commit is contained in:
parent
d29694d788
commit
73d4b6a6be
@ -123,7 +123,7 @@ namespace osu.Game.Online.Chat
|
||||
|
||||
if (existingNotification == null)
|
||||
{
|
||||
var notification = new PrivateMessageNotification(message.Sender.Username, channel, (n) => privateMessageNotifications.Remove(n));
|
||||
var notification = new PrivateMessageNotification(message.Sender.Username, channel, n => privateMessageNotifications.Remove(n));
|
||||
|
||||
notificationOverlay?.Post(notification);
|
||||
privateMessageNotifications.Add(notification);
|
||||
|
Loading…
Reference in New Issue
Block a user