Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs')
-rw-r--r--extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs b/extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs
index 92fff095b0..ccb7a7990c 100644
--- a/extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs
+++ b/extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs
@@ -240,14 +240,6 @@ namespace MonoDevelop.Debugger.Gdb
return val;
}
- public bool HasChildren (ObjectPath path, EvaluationOptions options)
- {
- session.SelectThread (threadId);
- GdbCommandResult res = session.RunCommand ("-var-info-num-children", path.Join ("."));
-
- return res.GetInt ("numchild") > 0;
- }
-
public ObjectValue[] GetChildren (ObjectPath path, int index, int count, EvaluationOptions options)
{
List<ObjectValue> children = new List<ObjectValue> ();