From 0d50ac1657b4f3da31e7c055ea4bb487a6f3f64d Mon Sep 17 00:00:00 2001 From: u9g Date: Sun, 20 Feb 2022 14:49:39 -0500 Subject: [PATCH] Spreadsheet: Remove Debug Statement --- Userland/Applications/Spreadsheet/Spreadsheet.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Applications/Spreadsheet/Spreadsheet.cpp b/Userland/Applications/Spreadsheet/Spreadsheet.cpp index c1d7e1f3ed..4b83270781 100644 --- a/Userland/Applications/Spreadsheet/Spreadsheet.cpp +++ b/Userland/Applications/Spreadsheet/Spreadsheet.cpp @@ -656,7 +656,6 @@ JsonObject Sheet::gather_documentation() const if (!value_object.has_own_property(doc_name).release_value()) return; - dbgln("Found '{}'", it.key.to_display_string()); auto doc = value_object.get(doc_name).release_value(); if (!doc.is_string()) return;