1
0
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:
Craftplacer 2020-01-22 00:53:49 +01:00
parent d29694d788
commit 73d4b6a6be

View File

@ -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);