Merge pull request #49279 from Calinou/rename-string-is-abs-path-method

Rename `String.is_abs_path()` to `String.is_absolute_path()`
This commit is contained in:
Rémi Verschelde 2021-06-11 15:58:16 +02:00 committed by GitHub
commit 6b0183ec89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 27 additions and 27 deletions

View file

@ -102,7 +102,7 @@ struct PluginConfigAndroid {
static inline String resolve_local_dependency_path(String plugin_config_dir, String dependency_path) {
String absolute_path;
if (!dependency_path.is_empty()) {
if (dependency_path.is_abs_path()) {
if (dependency_path.is_absolute_path()) {
absolute_path = ProjectSettings::get_singleton()->globalize_path(dependency_path);
} else {
absolute_path = plugin_config_dir.plus_file(dependency_path);