Recipe bug fix intruduced in MET08THFTIRQS408M
This commit is contained in:
@ -133,7 +133,8 @@ public class FileRead : Shared.FileRead, IFileRead
|
||||
Append(x.Cassette).Append(del).
|
||||
Append(x.MeanThickness);
|
||||
for (int i = 0; i < descriptions.Count; i++)
|
||||
_ = results.Append(del).Append(descriptions[i].Slot).Append(del).Append(descriptions[i].Mean);
|
||||
_ = results.Append(del).Append(descriptions[i].Slot).
|
||||
Append(del).Append(descriptions[i].Mean);
|
||||
return results.ToString();
|
||||
}
|
||||
|
||||
|
@ -505,7 +505,7 @@ public partial class ProcessData : IProcessData
|
||||
_Log.Debug("****ProcessData Removing Recipe");
|
||||
recipe = recipe.Remove(recipe.Length - 1, 1);
|
||||
}
|
||||
detail.Recipe = recipe;
|
||||
detail.Recipe = recipe.Split(' ').First();
|
||||
_ = GetToEOL();
|
||||
if (PeekNextLine().Contains("Thickness"))
|
||||
{
|
||||
|
Reference in New Issue
Block a user