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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2016-09-09 21:08:06 +0300
committerZoltan Varga <vargaz@gmail.com>2016-09-09 21:08:06 +0300
commitaaed9517573918c9421db0cef652349930acb9f1 (patch)
treeb29d30792953341cde1fdfa15d13db915aa4a96f /mcs/class/Mono.Debugger.Soft
parent038def98513e614a066b0ab78724b115801cb4b2 (diff)
Remove a debug printf.
Diffstat (limited to 'mcs/class/Mono.Debugger.Soft')
-rw-r--r--mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
index cf6bc23cb54..93e9a959eee 100644
--- a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
+++ b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
@@ -1917,7 +1917,6 @@ namespace Mono.Debugger.Soft
int nscopes = res.ReadInt ();
info.scopes_start = new int [nscopes];
info.scopes_end = new int [nscopes];
- Console.WriteLine ("A: ");
int last_start = 0;
for (int i = 0; i < nscopes; ++i) {
info.scopes_start [i] = last_start + res.ReadInt ();