Skip to content

Commit be71d4c

Browse files
committed
[lldb][NFCI] Delete commented out method OptionValueProperties::GetQualifiedName
1 parent d66417f commit be71d4c

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

lldb/include/lldb/Interpreter/OptionValueProperties.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,6 @@ class OptionValueProperties
6363

6464
void Initialize(const PropertyDefinitions &setting_definitions);
6565

66-
// bool
67-
// GetQualifiedName (Stream &strm);
68-
6966
// Subclass specific functions
7067

7168
// Get the index of a property given its exact name in this property

lldb/source/Interpreter/OptionValueProperties.cpp

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -51,25 +51,6 @@ void OptionValueProperties::AppendProperty(ConstString name,
5151
m_name_to_index.Sort();
5252
}
5353

54-
// bool
55-
// OptionValueProperties::GetQualifiedName (Stream &strm)
56-
//{
57-
// bool dumped_something = false;
58-
//// lldb::OptionValuePropertiesSP parent_sp(GetParent ());
59-
//// if (parent_sp)
60-
//// {
61-
//// parent_sp->GetQualifiedName (strm);
62-
//// strm.PutChar('.');
63-
//// dumped_something = true;
64-
//// }
65-
// if (m_name)
66-
// {
67-
// strm << m_name;
68-
// dumped_something = true;
69-
// }
70-
// return dumped_something;
71-
//}
72-
//
7354
lldb::OptionValueSP
7455
OptionValueProperties::GetValueForKey(const ExecutionContext *exe_ctx,
7556
ConstString key) const {

0 commit comments

Comments
 (0)