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 'main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ValueReference.cs')
-rw-r--r--main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ValueReference.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ValueReference.cs b/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ValueReference.cs
index eafe554afb..fa9eccd27e 100644
--- a/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ValueReference.cs
+++ b/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ValueReference.cs
@@ -185,11 +185,6 @@ namespace Mono.Debugging.Evaluation
Value = ctx.Adapter.FromRawValue (GetContext (options), value);
}
- bool IObjectValueSource.HasChildren (ObjectPath path, EvaluationOptions options)
- {
- return HasChildren (path, options);
- }
-
ObjectValue[] IObjectValueSource.GetChildren (ObjectPath path, int index, int count, EvaluationOptions options)
{
return GetChildren (path, index, count, options);
@@ -200,15 +195,6 @@ namespace Mono.Debugging.Evaluation
return ctx.Adapter.CallToString (ctx, Value);
}
- public virtual bool HasChildren (ObjectPath path, EvaluationOptions options)
- {
- try {
- return ctx.Adapter.ObjectValueHasChildren (GetChildrenContext (options), this, Value);
- } catch {
- return false;
- }
- }
-
public virtual ObjectValue[] GetChildren (ObjectPath path, int index, int count, EvaluationOptions options)
{
try {