Container bug fix
This commit is contained in:
@ -30,8 +30,8 @@ public interface IProperty
|
||||
static string GetDiffRootDirectory(string diffPropertyDirectory) =>
|
||||
Property.GetDiffRootDirectory(diffPropertyDirectory);
|
||||
|
||||
bool TestStatic_Any(List<Models.Container> propertyHolderCollections);
|
||||
static bool Any(List<Models.Container> propertyHolderCollections) =>
|
||||
bool TestStatic_Any(Models.Container[] propertyHolderCollections);
|
||||
static bool Any(Models.Container[] propertyHolderCollections) =>
|
||||
Property.Any(propertyHolderCollections);
|
||||
|
||||
(bool?, string[]) TestStatic_IsWrongYear(string[] segments, string year);
|
||||
|
@ -253,7 +253,7 @@ internal abstract class Property
|
||||
return new(j, dateTimes, results);
|
||||
}
|
||||
|
||||
internal static bool Any(List<Models.Container> propertyHolderCollections)
|
||||
internal static bool Any(Models.Container[] propertyHolderCollections)
|
||||
{
|
||||
bool result = false;
|
||||
foreach (Models.Container container in propertyHolderCollections)
|
||||
|
Reference in New Issue
Block a user