LibWeb: Convert StringBuilder::appendf() => AK::Format

This commit is contained in:
Andreas Kling 2021-05-07 20:47:25 +02:00
parent eb05931ab5
commit c7e9b6d00f
Notes: sideshowbarker 2024-07-18 18:35:14 +09:00
2 changed files with 2 additions and 6 deletions

View file

@ -74,11 +74,7 @@ JS_DEFINE_NATIVE_GETTER(LocationObject::host_getter)
{
auto& window = static_cast<WindowObject&>(global_object);
auto url = window.impl().document().url();
StringBuilder builder;
builder.append(url.host());
builder.append(':');
builder.appendf("%u", url.port());
return JS::js_string(vm, builder.to_string());
return JS::js_string(vm, String::formatted("{}:{}", url.host(), url.port()));
}
JS_DEFINE_NATIVE_GETTER(LocationObject::hash_getter)

View file

@ -243,7 +243,7 @@ void dump_tree(StringBuilder& builder, const Layout::Node& layout_node, bool sho
for (auto& property : properties) {
for (size_t i = 0; i < indent; ++i)
builder.append(" ");
builder.appendf(" (%s: %s)\n", property.name.characters(), property.value.characters());
builder.appendff(" ({}: {})\n", property.name, property.value);
}
}