Require Complete

IDE0060
This commit is contained in:
2024-11-20 10:49:21 -07:00
parent c1cfe70e6a
commit 5e1e8f2364
7 changed files with 78 additions and 89 deletions

View File

@ -456,10 +456,10 @@ public class ProcessData : IProcessData
UniqueId = string.Concat(equipId, "_", title, "_", logistics.DateTimeFromSequence.ToString(timeFormat));
}
#pragma warning disable IDE0060
private void Parse(IFileRead fileRead, Logistics logistics, List<FileInfo> fileInfoCollection)
#pragma warning restore IDE0060
{
if (fileRead is null)
throw new ArgumentNullException(nameof(fileRead));
// Convert the source file to UTF8Encoding format and then back to string for processing. This convertion
// shall eliminate the special HEX characters such as 0x18 "CANCEL" and 0x20 "SPACE" captured via nPort.
string rawText = File.ReadAllText(logistics.ReportFullPath);