remove confusing debug spew
authorGeoff Norton <grompf@sublimeintervention.com>
Wed, 4 Nov 2009 01:34:04 +0000 (01:34 -0000)
committerGeoff Norton <grompf@sublimeintervention.com>
Wed, 4 Nov 2009 01:34:04 +0000 (01:34 -0000)
svn path=/trunk/mcs/; revision=145356

mcs/class/System.ServiceModel/System.ServiceModel.Channels/HttpRequestChannel.cs

index 399338ba9c5db3e09d0d5bd08f1092c2d2460d3e..4770b46c33e2946270c91592bd355f7be81c27d0 100644 (file)
@@ -152,17 +152,10 @@ namespace System.ServiceModel.Channels
                                resstr = res.GetResponseStream ();
                        } catch (WebException we) {
                                res = we.Response;
-#if NET_2_1 // debug
-                               Console.WriteLine (we);
-#endif
                                try {
                                        // The response might contain SOAP fault. It might not.
                                        resstr = res.GetResponseStream ();
                                } catch (WebException we2) {
-#if NET_2_1 // debug
-                                       Console.WriteLine (we2);
-#endif
-
                                        channelResult.Complete (we2);
                                        return;
                                }