1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 14:13:18 +08:00

Fix code quality issues

This commit is contained in:
Jai Sharma 2022-04-02 17:27:44 +01:00
parent 2297073b7e
commit 9e152cd3fd
2 changed files with 1 additions and 2 deletions

View File

@ -95,7 +95,7 @@ namespace osu.Game.Tests.Visual.Online
sender.Text = string.Empty; sender.Text = string.Empty;
}; };
bar.OnSearchTermsChanged += (text) => bar.OnSearchTermsChanged += text =>
{ {
searchText.Text = $"OnSearchTermsChanged: {text}"; searchText.Text = $"OnSearchTermsChanged: {text}";
}; };

View File

@ -122,7 +122,6 @@ namespace osu.Game.Overlays.Chat
// Clear search terms if any exist when switching back to chat mode // Clear search terms if any exist when switching back to chat mode
if (!showSearch) if (!showSearch)
OnSearchTermsChanged?.Invoke(string.Empty); OnSearchTermsChanged?.Invoke(string.Empty);
}, true); }, true);
currentChannel.BindValueChanged(change => currentChannel.BindValueChanged(change =>