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:
authorSureshkumar T <suresh@mono-cvs.ximian.com>2005-03-07 16:43:30 +0300
committerSureshkumar T <suresh@mono-cvs.ximian.com>2005-03-07 16:43:30 +0300
commit6bcb9cca062e534ab193433b3fa910755e6ab520 (patch)
tree81b9472d263a7b583783c9e4c1014a475f154064 /mcs/class/System.Data/System.Data.SqlClient
parent296f55fe93388bc5e72180428f476ca595b72f91 (diff)
err.. forgot to remove Console.WriteLine debug message.
svn path=/trunk/mcs/; revision=41521
Diffstat (limited to 'mcs/class/System.Data/System.Data.SqlClient')
-rw-r--r--mcs/class/System.Data/System.Data.SqlClient/SqlCommand.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/mcs/class/System.Data/System.Data.SqlClient/SqlCommand.cs b/mcs/class/System.Data/System.Data.SqlClient/SqlCommand.cs
index 7cee2bff7d7..d638fbd5dbc 100644
--- a/mcs/class/System.Data/System.Data.SqlClient/SqlCommand.cs
+++ b/mcs/class/System.Data/System.Data.SqlClient/SqlCommand.cs
@@ -402,7 +402,6 @@ namespace System.Data.SqlClient {
ValidateCommand ("ExecuteReader");
try {
this.behavior = behavior;
- Console.WriteLine (this.behavior.ToString ());
Execute (behavior, true);
Connection.DataReader = new SqlDataReader (this);
}