mirror of
https://github.com/ppy/osu
synced 2024-12-12 01:48:49 +00:00
Remove static from getWords method
This commit is contained in:
parent
771155e882
commit
3d2625836a
@ -128,7 +128,7 @@ namespace osu.Game.Online.Chat
|
||||
notificationOverlay?.Post(notification);
|
||||
}
|
||||
|
||||
private static IEnumerable<string> getWords(string input) => Regex.Matches(input, @"\w+", RegexOptions.Compiled).Select(c => c.Value);
|
||||
private IEnumerable<string> getWords(string input) => Regex.Matches(input, @"\w+", RegexOptions.Compiled).Select(c => c.Value);
|
||||
|
||||
/// <summary>
|
||||
/// Finds the first matching string/word in both <paramref name="x"/> and <paramref name="y"/> (case-insensitive)
|
||||
|
Loading…
Reference in New Issue
Block a user