1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:54:58 +00:00

AK: Make LexicalPath take String instead of StringView

This commit is contained in:
Andreas Kling 2021-04-16 23:44:06 +02:00
parent e873d27ab1
commit f7139d9422
2 changed files with 8 additions and 8 deletions

View file

@ -31,8 +31,8 @@
namespace AK {
LexicalPath::LexicalPath(const StringView& s)
: m_string(s)
LexicalPath::LexicalPath(String s)
: m_string(move(s))
{
canonicalize();
m_is_valid = true;
@ -114,12 +114,12 @@ bool LexicalPath::has_extension(const StringView& extension) const
return m_string.ends_with(extension, CaseSensitivity::CaseInsensitive);
}
String LexicalPath::canonicalized_path(const StringView& path)
String LexicalPath::canonicalized_path(String path)
{
return LexicalPath(path).string();
return LexicalPath(move(path)).string();
}
String LexicalPath::relative_path(const String absolute_path, const String& prefix)
String LexicalPath::relative_path(String absolute_path, const String& prefix)
{
if (!LexicalPath { absolute_path }.is_absolute() || !LexicalPath { prefix }.is_absolute())
return {};