Fix missed renamings from empty() to is_empty()

Those were missed in #44401 or added by later PRs.
This commit is contained in:
Rémi Verschelde 2020-12-29 09:54:59 +01:00
parent c6e9d912e1
commit 09212fba1e
No known key found for this signature in database
GPG key ID: C3336907360768E1
12 changed files with 18 additions and 18 deletions

View file

@ -108,7 +108,7 @@ void JavaScriptToolsEditorPlugin::_zip_recursive(String p_path, String p_base_pa
}
dir->list_dir_begin();
String cur = dir->get_next();
while (!cur.empty()) {
while (!cur.is_empty()) {
String cs = p_path.plus_file(cur);
if (cur == "." || cur == ".." || cur == ".import") {
// Skip