mirror of
https://github.com/godotengine/godot.git
synced 2024-11-14 16:13:08 +00:00
Remove redundant condition in String::_humanize_digits()
This commit is contained in:
parent
7e9c1041ac
commit
3b8004865d
@ -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 New Issue
Block a user