Add default implementation for IBotsComparer

This commit is contained in:
Archi 2023-11-15 00:02:26 +01:00
parent 185d7adccf
commit 90e9f47899
No known key found for this signature in database
GPG key ID: 6B138B4C64555AEA

View file

@ -31,5 +31,5 @@ public interface IBotsComparer : IPlugin {
/// Unless you know what you're doing, you should not implement this property yourself and let ASF decide.
/// </summary>
/// <returns>Comparer that will be used for the bots, as well as bot regexes.</returns>
StringComparer BotsComparer { get; }
StringComparer BotsComparer => StringComparer.Ordinal;
}