House Cleaning
This commit is contained in:
@ -64,20 +64,19 @@ internal abstract class FaceFileLogic
|
||||
exifDirectory = Metadata.Models.Stateless.Methods.IMetadata.GetExifDirectory(mappedFile.FilePath);
|
||||
RectangleF? rectangle = ILocation.GetPercentagesRectangle(configuration.LocationDigits, wholePercentages.Value);
|
||||
personDisplayDirectoryName = mappedFile.PersonDisplayDirectoryName is null ? configuration.MappingDefaultName : mappedFile.PersonDisplayDirectoryName;
|
||||
LocationContainer locationContainer = new(dateOnly,
|
||||
exifDirectory,
|
||||
mappedFile.DirectoryNumber,
|
||||
personDisplayDirectoryName,
|
||||
null,
|
||||
null,
|
||||
mappedFile.FilePath,
|
||||
fromDistanceContent,
|
||||
id.Value,
|
||||
null,
|
||||
null,
|
||||
mappedFile.PersonKey,
|
||||
rectangle,
|
||||
wholePercentages.Value);
|
||||
LocationContainer locationContainer = new(CreationDateOnly: dateOnly,
|
||||
ExifDirectory: exifDirectory,
|
||||
DirectoryNumber: mappedFile.DirectoryNumber,
|
||||
DisplayDirectoryName: personDisplayDirectoryName,
|
||||
Encoding: null,
|
||||
FaceFile: null,
|
||||
FilePath: mappedFile.FilePath,
|
||||
FromDistanceContent: fromDistanceContent,
|
||||
Id: id.Value,
|
||||
LengthPermyriad: null,
|
||||
LengthSource: null,
|
||||
PersonKey: mappedFile.PersonKey,
|
||||
WholePercentages: wholePercentages.Value);
|
||||
lock (locationContainers)
|
||||
locationContainers.Add(locationContainer);
|
||||
}
|
||||
@ -167,23 +166,19 @@ internal abstract class FaceFileLogic
|
||||
MoveUnableToMatch(filePath);
|
||||
return;
|
||||
}
|
||||
RectangleF? rectangle = ILocation.GetPercentagesRectangle(configuration.LocationDigits, wholePercentages.Value);
|
||||
if (rectangle is null)
|
||||
return;
|
||||
LocationContainer locationContainer = new(dateOnly,
|
||||
exifDirectory,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
faceFile,
|
||||
filePath,
|
||||
fromDistanceContent,
|
||||
filePath.Id.Value,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
rectangle,
|
||||
wholePercentages.Value);
|
||||
LocationContainer locationContainer = new(CreationDateOnly: dateOnly,
|
||||
ExifDirectory: exifDirectory,
|
||||
DirectoryNumber: null,
|
||||
DisplayDirectoryName: null,
|
||||
Encoding: null,
|
||||
FaceFile: faceFile,
|
||||
FilePath: filePath,
|
||||
FromDistanceContent: fromDistanceContent,
|
||||
Id: filePath.Id.Value,
|
||||
LengthPermyriad: null,
|
||||
LengthSource: null,
|
||||
PersonKey: null,
|
||||
WholePercentages: wholePercentages.Value);
|
||||
lock (locationContainers)
|
||||
locationContainers.Add(locationContainer);
|
||||
}
|
||||
|
Reference in New Issue
Block a user