That didn't need to be a variable

This commit is contained in:
2025-06-05 21:34:15 -07:00
parent a69f4cc73d
commit ca814f4dd7

View File

@@ -27,8 +27,7 @@ public static class Tools
{
try
{
BigInteger bigInt = BigInteger.Parse(number);
return FormatWithCommas(bigInt);
return FormatWithCommas(BigInteger.Parse(number));
}
catch
{