NumericUtils: remove possible trailing whitespace

This commit is contained in:
2025-12-12 15:20:17 +01:00
parent 8c2fcaaef5
commit 4f0416e1c1

View File

@@ -101,7 +101,7 @@ class NumericUtils (val context: Context) {
else -> "" else -> ""
}) })
} }
return formatted.toString() return formatted.toString().trim()
} }
/** /**