Added Hypen
Dual write PDSF for Metrology Viewer Version Error Message Tests Passed gitignore cellInstanceVersion.EdaConnection.PortNumber NETFRAMEWORK Added Climatec to Test.cs GetJobIdDirectory Remove and
This commit is contained in:
@ -418,10 +418,10 @@ public class ProcessData : IProcessData
|
||||
{
|
||||
_I = 0;
|
||||
ParseErrorText = string.Empty;
|
||||
if (!pages.ContainsKey(headerFileName))
|
||||
if (!pages.TryGetValue(headerFileName, out string value))
|
||||
throw new Exception();
|
||||
_I = 0;
|
||||
_Data = pages[headerFileName];
|
||||
_Data = value;
|
||||
ScanPast("Date:");
|
||||
_ = GetToEOL();
|
||||
Set(logistics);
|
||||
@ -508,10 +508,10 @@ public class ProcessData : IProcessData
|
||||
result.HeaderUniqueId = UniqueId;
|
||||
result.Id = 0;
|
||||
result.Title = null;
|
||||
if (!pages.ContainsKey(waferFileName))
|
||||
if (!pages.TryGetValue(waferFileName, out string value))
|
||||
throw new Exception();
|
||||
_I = 0;
|
||||
_Data = pages[waferFileName];
|
||||
_Data = value;
|
||||
ScanPast("Date:");
|
||||
result.Date = GetToEOL();
|
||||
ScanPast("ID#");
|
||||
|
Reference in New Issue
Block a user