CA1837
CA1825
CA1829
CA1847
cSpell
This commit is contained in:
2022-02-14 15:24:57 -07:00
parent 1b77400643
commit 817934a255
10 changed files with 41 additions and 19 deletions

View File

@ -175,7 +175,7 @@ public class ProcessData : IProcessData
return IsNullOrWhiteSpace((num > -1 ? _Data.Substring(_I, num - _I) : _Data.Substring(_I)));
}
private bool IsNullOrWhiteSpace(string text)
private static bool IsNullOrWhiteSpace(string text)
{
bool flag;
int num = 0;
@ -319,7 +319,7 @@ public class ProcessData : IProcessData
detail = new Detail() { Pt = GetToken() };
if (detail.Pt.Contains("Avg"))
break;
else if (!detail.Pt.Contains(":"))
else if (!detail.Pt.Contains(':'))
{
detail.R = GetToken();
detail.T = GetToken();
@ -359,7 +359,7 @@ public class ProcessData : IProcessData
_ = GetBefore(": ");
for (string i = GetToken(); !string.IsNullOrEmpty(i); i = GetToken())
{
if (!i.Contains(":"))
if (!i.Contains(':'))
{
detail = new Detail();
int num1 = num + 1;