[lldb][NFC] Delete unused function Breakpoint::GetEventIdentifier
authorAlex Langford <alangford@apple.com>
Thu, 6 Apr 2023 21:47:29 +0000 (14:47 -0700)
committerAlex Langford <alangford@apple.com>
Fri, 7 Apr 2023 00:14:09 +0000 (17:14 -0700)
This is unused

Differential Revision: https://reviews.llvm.org/D147746

lldb/include/lldb/Breakpoint/Breakpoint.h
lldb/source/Breakpoint/Breakpoint.cpp

index 7490982..bd5c377 100644 (file)
@@ -80,7 +80,6 @@ namespace lldb_private {
 class Breakpoint : public std::enable_shared_from_this<Breakpoint>,
                    public Stoppoint {
 public:
-  static ConstString GetEventIdentifier();
   static const char *
       BreakpointEventTypeAsCString(lldb::BreakpointEventType type);
 
index bdaf3c9..9a2dbc0 100644 (file)
@@ -37,11 +37,6 @@ using namespace lldb;
 using namespace lldb_private;
 using namespace llvm;
 
-ConstString Breakpoint::GetEventIdentifier() {
-  static ConstString g_identifier("event-identifier.breakpoint.changed");
-  return g_identifier;
-}
-
 const char *Breakpoint::g_option_names[static_cast<uint32_t>(
     Breakpoint::OptionNames::LastOptionName)]{"Names", "Hardware"};