Deleted Method Get
This commit is contained in:
@ -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);
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user