You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-21 14:57:09 +00:00
Rename String.IsAbsPath() to String.IsAbsolutePath()
This commit is contained in:
@@ -575,7 +575,7 @@ namespace Godot
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// If the string is a path to a file or directory, return <see langword="true"/> if the path is absolute.
|
/// If the string is a path to a file or directory, return <see langword="true"/> if the path is absolute.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static bool IsAbsPath(this string instance)
|
public static bool IsAbsolutePath(this string instance)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(instance))
|
if (string.IsNullOrEmpty(instance))
|
||||||
return false;
|
return false;
|
||||||
@@ -590,7 +590,7 @@ namespace Godot
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static bool IsRelPath(this string instance)
|
public static bool IsRelPath(this string instance)
|
||||||
{
|
{
|
||||||
return !IsAbsPath(instance);
|
return !IsAbsolutePath(instance);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user