1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 08:37:45 +00:00

FileManager: Remove explicit T to Optional<T> conversion

This commit is contained in:
Daniel Bertalan 2021-07-03 16:28:23 +02:00 committed by Ali Mohammad Pur
parent 9323d459b4
commit 6c0b9919ce

View file

@ -94,7 +94,7 @@ PropertiesWindow::PropertiesWindow(const String& path, bool disable_rename, Wind
auto properties = Vector<PropertyValuePair>(); auto properties = Vector<PropertyValuePair>();
properties.append({ "Type:", get_description(m_mode) }); properties.append({ "Type:", get_description(m_mode) });
auto parent_link = URL::create_with_file_protocol(m_parent_path, m_name); auto parent_link = URL::create_with_file_protocol(m_parent_path, m_name);
properties.append(PropertyValuePair { "Location:", path, Optional(parent_link) }); properties.append(PropertyValuePair { "Location:", path, parent_link });
if (S_ISLNK(m_mode)) { if (S_ISLNK(m_mode)) {
auto link_destination = Core::File::read_link(path); auto link_destination = Core::File::read_link(path);
@ -103,7 +103,7 @@ PropertiesWindow::PropertiesWindow(const String& path, bool disable_rename, Wind
} else { } else {
auto link_directory = LexicalPath(link_destination); auto link_directory = LexicalPath(link_destination);
auto link_parent = URL::create_with_file_protocol(link_directory.dirname(), link_directory.basename()); auto link_parent = URL::create_with_file_protocol(link_directory.dirname(), link_directory.basename());
properties.append({ "Link target:", link_destination, Optional(link_parent) }); properties.append({ "Link target:", link_destination, link_parent });
} }
} }