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:
commit
6b0183ec89
17 changed files with 27 additions and 27 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue