You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
`variant_utility.cpp` has 8 different copies of the exact same loop to join vararg strings together. This is bad coding process and makes the codebase needlessly cluttered. Also, the loop itself has an i == 0 check that is unnecessary since String is auto-initialized to be empty and String::operator+= already checks if it is empty before appending. This is a non-functional change that only reorganizes the code to be a bit more readable.
89 KiB
89 KiB