Actually no, this makes more sense

This commit is contained in:
Grishka 2022-11-06 05:39:22 +03:00
parent 77a2fd2a60
commit bc733af147
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ public class UiUtils{
@SuppressLint("DefaultLocale")
public static String abbreviateNumber(long n){
if(n<Integer.MAX_VALUE)
if(n<1_000_000_000L)
return abbreviateNumber((int)n);
double a=n/1_000_000_000.0;