From 238751f14ee1bcbb95643e0781e45e137c466475 Mon Sep 17 00:00:00 2001 From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> Date: Thu, 25 May 2023 13:29:46 -0700 Subject: [PATCH] Remove extra cout (#1101) --- dCommon/Amf3.h | 1 - 1 file changed, 1 deletion(-) diff --git a/dCommon/Amf3.h b/dCommon/Amf3.h index 4dba039f..4c649524 100644 --- a/dCommon/Amf3.h +++ b/dCommon/Amf3.h @@ -342,7 +342,6 @@ public: */ template AMFValue* Get(uint32_t index) const { - std::cout << (index < this->dense.size()) << std::endl; return index < this->dense.size() ? dynamic_cast*>(this->dense.at(index)) : nullptr;