mirror of
https://github.com/ppy/osu.git
synced 2025-02-21 19:32:55 +08: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);
|
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>
|
/// <summary>
|
||||||
/// Finds the first matching string/word in both <paramref name="x"/> and <paramref name="y"/> (case-insensitive)
|
/// 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