From: Alex Langford Date: Fri, 12 May 2023 19:33:07 +0000 (-0700) Subject: [lldb][NFCI] Delete commented out method OptionValueProperties::GetQualifiedName X-Git-Tag: upstream/17.0.6~8658 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=be71d4cc5010cf6e52aafc430691afd12a1c07c6;p=platform%2Fupstream%2Fllvm.git [lldb][NFCI] Delete commented out method OptionValueProperties::GetQualifiedName --- diff --git a/lldb/include/lldb/Interpreter/OptionValueProperties.h b/lldb/include/lldb/Interpreter/OptionValueProperties.h index 5a6bf2a81e4b..e20ba2c3af71 100644 --- a/lldb/include/lldb/Interpreter/OptionValueProperties.h +++ b/lldb/include/lldb/Interpreter/OptionValueProperties.h @@ -63,9 +63,6 @@ public: void Initialize(const PropertyDefinitions &setting_definitions); - // bool - // GetQualifiedName (Stream &strm); - // Subclass specific functions // Get the index of a property given its exact name in this property diff --git a/lldb/source/Interpreter/OptionValueProperties.cpp b/lldb/source/Interpreter/OptionValueProperties.cpp index a061c41982fc..36d732d2d25e 100644 --- a/lldb/source/Interpreter/OptionValueProperties.cpp +++ b/lldb/source/Interpreter/OptionValueProperties.cpp @@ -51,25 +51,6 @@ void OptionValueProperties::AppendProperty(ConstString name, m_name_to_index.Sort(); } -// bool -// OptionValueProperties::GetQualifiedName (Stream &strm) -//{ -// bool dumped_something = false; -//// lldb::OptionValuePropertiesSP parent_sp(GetParent ()); -//// if (parent_sp) -//// { -//// parent_sp->GetQualifiedName (strm); -//// strm.PutChar('.'); -//// dumped_something = true; -//// } -// if (m_name) -// { -// strm << m_name; -// dumped_something = true; -// } -// return dumped_something; -//} -// lldb::OptionValueSP OptionValueProperties::GetValueForKey(const ExecutionContext *exe_ctx, ConstString key) const {