Deleted Method Get

This commit is contained in:
2022-11-03 20:43:32 -07:00
parent 569ee26c55
commit 6610565ce3
11 changed files with 207 additions and 213 deletions

View File

@ -38,10 +38,6 @@ public interface IProperty
static (bool?, string[]) IsWrongYear(string[] segments, string year) =>
Property.IsWrongYear(segments, year);
(bool?, string[]) TestStatic_IsWrongYear(string fileName, DateTime minimumDateTime);
static (bool?, string[]) IsWrongYear(string fileName, DateTime minimumDateTime) =>
throw new NotImplementedException(); //Property.IsWrongYear(fileName, minimumDateTime);
List<DateTime> TestStatic_GetDateTimes(Models.Property property);
static List<DateTime> GetDateTimes(Models.Property property) =>
Property.GetDateTimes(property.CreationTime, property.LastWriteTime, property.DateTime, property.DateTimeDigitized, property.DateTimeOriginal, property.GPSDateStamp);

View File

@ -253,10 +253,10 @@ internal abstract class Property
return new(j, dateTimes, results);
}
internal static bool Any(Models.Container[] propertyHolderCollections)
internal static bool Any(Models.Container[] containers)
{
bool result = false;
foreach (Models.Container container in propertyHolderCollections)
foreach (Models.Container container in containers)
{
if (!container.Items.Any())
continue;