1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 10:42:54 +08:00

Resolve code quality errors

This commit is contained in:
Craftplacer 2020-01-19 18:34:48 +01:00
parent 4b871f61e3
commit 7d1fc388ce

View File

@ -36,7 +36,6 @@ namespace osu.Game.Online.Chat
private Bindable<bool> notifyOnMention;
private Bindable<bool> notifyOnChat;
private Bindable<string> highlightWords;
private Bindable<User> localUser;
/// <summary>
@ -159,8 +158,6 @@ namespace osu.Game.Online.Chat
private static bool anyCaseInsensitive(IEnumerable<string> x, string y) => x.Any(x2 => x2.Equals(y, StringComparison.OrdinalIgnoreCase));
public class PrivateMessageNotification : SimpleNotification
{
public PrivateMessageNotification(string username, Channel channel)