[lldb][NFCI] Delete commented out method OptionValueProperties::GetQualifiedName
authorAlex Langford <alangford@apple.com>
Fri, 12 May 2023 19:33:07 +0000 (12:33 -0700)
committerAlex Langford <alangford@apple.com>
Fri, 12 May 2023 19:33:25 +0000 (12:33 -0700)
lldb/include/lldb/Interpreter/OptionValueProperties.h
lldb/source/Interpreter/OptionValueProperties.cpp

index 5a6bf2a81e4b809bb12e0f9ecbe31c06bcef5c73..e20ba2c3af71be868657beeff28bef0d6c52d60a 100644 (file)
@@ -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
index a061c41982fc9fcd3664bd7537c550c1263aec86..36d732d2d25e121d68c7513958f1a77585ba7e99 100644 (file)
@@ -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 {