diff options
author | Andreas Kling <kling@serenityos.org> | 2023-03-11 15:04:27 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-03-12 18:10:32 +0100 |
commit | 6960a1bb4576ce637e644b654d146ed1a4431eba (patch) | |
tree | b1a18eb2b23712aa8b2ffe381516ad7d3fb132a9 | |
parent | 633006926fd26eba7116526c760d2ab7d2a55fe3 (diff) | |
download | serenity-6960a1bb4576ce637e644b654d146ed1a4431eba.zip |
LibWeb: Stop polluting layout tree dumps with TextNode memory addresses
I've never actually used this for anything, and it's pretty noisy.
-rw-r--r-- | Userland/Libraries/LibWeb/Dump.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Libraries/LibWeb/Dump.cpp b/Userland/Libraries/LibWeb/Dump.cpp index dd9ce84976..4219081607 100644 --- a/Userland/Libraries/LibWeb/Dump.cpp +++ b/Userland/Libraries/LibWeb/Dump.cpp @@ -151,8 +151,6 @@ void dump_tree(StringBuilder& builder, Layout::Node const& layout_node, bool sho nonbox_color_on, identifier, color_off); - if (interactive) - builder.appendff(" @{:p}", &layout_node); builder.append("\n"sv); } else { auto& box = verify_cast<Layout::Box>(layout_node); @@ -263,8 +261,6 @@ void dump_tree(StringBuilder& builder, Layout::Node const& layout_node, bool sho fragment_index, color_off, fragment.layout_node().class_name()); - if (interactive) - builder.appendff("@{:p}, ", &fragment.layout_node()); builder.appendff("start: {}, length: {}, rect: {}\n", fragment.start(), fragment.length(), |