diff --git a/SabreTools.Matching/Extensions.cs b/SabreTools.Matching/Extensions.cs index 5beb4e1..e9766d7 100644 --- a/SabreTools.Matching/Extensions.cs +++ b/SabreTools.Matching/Extensions.cs @@ -7,15 +7,7 @@ namespace SabreTools.Matching public static class Extensions { /// - /// Indicates whether the specified array is null or has a length of zero - /// - public static bool IsNullOrEmpty(this Array? array) - { - return array == null || array.Length == 0; - } - - /// - /// Find all positions of one array in another, if possible, if possible + /// Find all positions of one array in another, if possible /// /// Byte array to search within /// Byte array representing the search value @@ -28,7 +20,7 @@ namespace SabreTools.Matching } /// - /// Find all positions of one array in another, if possible, if possible + /// Find all positions of one array in another, if possible /// /// Byte array to search within /// Byte array representing the search value