From c0083e431bb7bf66987f396cf9a62fa372d92fe9 Mon Sep 17 00:00:00 2001 From: kobewi Date: Sat, 5 Nov 2022 17:09:16 +0100 Subject: Cleanup unused engine code v2 --- core/debugger/script_debugger.cpp | 4 ---- core/debugger/script_debugger.h | 1 - 2 files changed, 5 deletions(-) (limited to 'core/debugger') diff --git a/core/debugger/script_debugger.cpp b/core/debugger/script_debugger.cpp index 8af1573bff..32725b76c1 100644 --- a/core/debugger/script_debugger.cpp +++ b/core/debugger/script_debugger.cpp @@ -73,10 +73,6 @@ bool ScriptDebugger::is_breakpoint(int p_line, const StringName &p_source) const return breakpoints[p_line].has(p_source); } -bool ScriptDebugger::is_breakpoint_line(int p_line) const { - return breakpoints.has(p_line); -} - String ScriptDebugger::breakpoint_find_source(const String &p_source) const { return p_source; } diff --git a/core/debugger/script_debugger.h b/core/debugger/script_debugger.h index c7aa90027b..edce089179 100644 --- a/core/debugger/script_debugger.h +++ b/core/debugger/script_debugger.h @@ -64,7 +64,6 @@ public: void insert_breakpoint(int p_line, const StringName &p_source); void remove_breakpoint(int p_line, const StringName &p_source); bool is_breakpoint(int p_line, const StringName &p_source) const; - bool is_breakpoint_line(int p_line) const; void clear_breakpoints(); const HashMap> &get_breakpoints() const { return breakpoints; } -- cgit v1.2.3