From acdcf59a333b0fe9a709ee53b2a82b26b346b747 Mon Sep 17 00:00:00 2001 From: asynts Date: Sat, 23 Jan 2021 23:45:29 +0100 Subject: Everywhere: Remove unnecessary debug comments. It would be tempting to uncomment these statements, but that won't work with the new changes. This was done with the following commands: find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/#define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/#define/ { toggle = 1 }' {} \; find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/ #define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/ #define/ { toggle = 1 }' {} \; --- Userland/Libraries/LibJS/Runtime/Object.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'Userland/Libraries/LibJS/Runtime/Object.cpp') diff --git a/Userland/Libraries/LibJS/Runtime/Object.cpp b/Userland/Libraries/LibJS/Runtime/Object.cpp index 87a9d75dd5..699733e00a 100644 --- a/Userland/Libraries/LibJS/Runtime/Object.cpp +++ b/Userland/Libraries/LibJS/Runtime/Object.cpp @@ -38,8 +38,6 @@ #include #include -//#define OBJECT_DEBUG - namespace JS { PropertyDescriptor PropertyDescriptor::from_dictionary(VM& vm, const Object& object) -- cgit v1.2.3