Remove redundant condition in String::_humanize_digits()
This commit is contained in:
parent
7e9c1041ac
commit
3b8004865d
1 changed files with 1 additions and 3 deletions
|
@ -3288,9 +3288,7 @@ String String::simplify_path() const {
|
|||
|
||||
static int _humanize_digits(int p_num) {
|
||||
|
||||
if (p_num < 10)
|
||||
return 2;
|
||||
else if (p_num < 100)
|
||||
if (p_num < 100)
|
||||
return 2;
|
||||
else if (p_num < 1024)
|
||||
return 1;
|
||||
|
|
Loading…
Reference in a new issue