Condense expression

single bool branch
This commit is contained in:
Kurt 2021-06-03 17:08:42 -07:00
parent a2492eddd9
commit 8ec25da194

View file

@ -184,7 +184,7 @@ namespace PKHeX.Core
{
if ('' <= c)
return c <= '';
return c is >= '0' and <= '9';
return (uint)(c - '0') <= 9;
}
return str.Count(IsNumber);