Cleanup unused engine code v2
This commit is contained in:
parent
cd0a9ccdfd
commit
c0083e431b
39 changed files with 0 additions and 573 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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<int, HashSet<StringName>> &get_breakpoints() const { return breakpoints; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue