Actually no, this makes more sense
This commit is contained in:
parent
77a2fd2a60
commit
bc733af147
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue