#pragma warning disable IDE0060

This commit is contained in:
Mike Phares 2023-04-22 09:18:12 -07:00
parent 2ff1342f5a
commit 3a9413deb3

View File

@ -107,13 +107,11 @@ public class FileRead : Shared.FileRead, IFileRead
return results;
}
#pragma warning disable IDE0060
private static Tuple<string, Test[], JsonElement[], List<FileInfo>> GetExtractResult(string reportFullPath, DateTime dateTime)
#pragma warning restore IDE0060
{
Tuple<string, Test[], JsonElement[], List<FileInfo>> results = new(string.Empty, null, null, new List<FileInfo>());
if (reportFullPath is null)
{ }
if (dateTime == DateTime.MinValue)
{ }
return results;
}